-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.11 KB
/
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
35
36
37
38
39
40
41
{
"scripts": {
"watch": "babel -w src/ -d dist/",
"build": "babel src/ -d dist/",
"serve": "babel -w src/ -d dist/ | nodemon --watch dist",
"test": "echo \"Error: no test specified\" && exit 1",
"build-ts": "tsc",
"dev": "nodemon build/app/index.js"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"config": "^1.26.1",
"express-jwt": "^5.3.0",
"joi": "^10.6.0",
"jsonwebtoken": "^7.4.1",
"log4js": "^2.3.3",
"mongoose": "^4.11.5",
"qrcode-terminal": "^0.11.0",
"ts-node": "^3.3.0",
"typescript-node": "^0.1.3",
"wechaty": "^0.8.133"
},
"devDependencies": {
"@types/bluebird": "^3.5.8",
"@types/body-parser": "^1.16.4",
"@types/config": "0.0.32",
"@types/express-jwt": "0.0.36",
"@types/joi": "^10.4.0",
"@types/jsonwebtoken": "^7.2.2",
"@types/log4js": "0.0.32",
"@types/mongoose": "^4.7.19",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^1.11.0",
"ts-node": "^3.3.0",
"typescript": "^2.4.2"
}
}