-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 922 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "cross-app-comments-engine",
"version": "0.1.0",
"main": "index.ts",
"repository": "[email protected]:theDanielJLewis/cross-app-comments-engine.git",
"author": "Daniel J. Lewis <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^1.3.5",
"config": "^3.3.9",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"fast-xml-parser": "^4.2.0",
"jsonfile": "^6.1.0",
"jsrsasign": "^10.8.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/config": "^3.3.0",
"@types/express": "^4.17.17",
"@types/jsonfile": "^6.1.1",
"@types/jsrsasign": "^10.5.8",
"@types/node": "^18.15.11",
"@types/yargs": "^17.0.24",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"build": "tsc",
"dev": "nodemon --ignore '*.json' src/index.ts",
"keygen": "node build/index.js --generate-keys",
"create-token": "node build/index.js --create-token"
}
}