-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.09 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
42
43
{
"name": "node-api",
"version": "1.0.0",
"description": "koa node api",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development node --inspect blog-server.js",
"build": "cross-env NODE_ENV=production node blog-server.js",
"pm2start": "pm2 start blog-server.js --watch",
"pm2stop": "pm2 stop blog-server.js"
},
"author": "hzy",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"bytes": "^3.0.0",
"connect-redis": "^3.3.3",
"cross-env": "^5.1.4",
"jsonwebtoken": "^8.2.1",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-generic-session": "^2.0.1",
"koa-json": "^2.0.2",
"koa-jwt": "^3.3.1",
"koa-logger": "^3.2.0",
"koa-multer": "^1.0.2",
"koa-redis": "^3.1.2",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"koa-unless": "^1.0.7",
"mongoose": "^5.0.13",
"pm2": "^2.10.2",
"qn": "^1.3.0",
"redis": "^2.8.0"
},
"devDependencies": {
"cross-env": "^5.1.3",
"debug": "^3.1.0",
"mongoose": "^5.0.3",
"serve-favicon": "^2.4.5"
}
}