-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.13 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-server-demo",
"author": "EragonJiang",
"version": "2.0.0",
"description": "Node server demo based on koa",
"keywords": ["node", "koa", "demo"],
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "pm2 start app.json --env dev",
"start-pm2": "pm2 start app.json --env pro",
"dev-pm2": "NODE_ENV=development node-dev --no-notify app.js",
"shut": "pm2 delete all",
"lint": "eslint ./src --fix"
},
"dependencies": {
"koa": "^2.3.0",
"koa-ejs": "^4.0.0",
"koa-mount": "^3.0.0",
"koa-onerror": "^3.1.0",
"koa-router": "^7.3.0",
"koa-static": "^4.0.0",
"mysql": "^2.14.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"thunkify": "^2.1.2"
},
"devDependencies": {
"eslint": "^3.0.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"node-dev": "^3.1.3"
},
"license": "MITs",
"engines": {
"node": ">=7.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Dragon-Rider/node-server-demo.git"
}
}