-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1017 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "app.js",
"bin": {
"app": "index.js"
},
"directories": {
"test": "test"
},
"scripts": {
"dev": "set NODE_ENV=development&& node app.js ",
"start": "set NODE_ENV=production&& pm2 start app.js ",
"prod": "set NODE_ENV=production&& node app.js ",
"test": "mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"ejs": "^2.5.7",
"jsonwebtoken": "^8.1.0",
"koa": "^2.4.1",
"koa-body": "^2.5.0",
"koa-router": "^7.3.0",
"koa-static2": "^0.1.8",
"koa-xml-body": "^2.0.0",
"lodash": "^4.17.5",
"log4js": "^2.4.1",
"mongoose": "^5.0.0-rc1",
"mysql": "^2.15.0",
"mysql2": "^1.5.3",
"qiniu": "^7.1.3",
"redis": "^2.8.0",
"redlock": "^3.1.2",
"sequelize": "^4.37.5",
"uuid": "^3.1.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"mocha": "^4.1.0",
"should": "^13.2.1",
"supertest": "^3.0.0"
}
}