-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.41 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.41 KB
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
{
"name": "myapp1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run lint && nodemon src/app.js --exec babel-node",
"dev": "export NODE_ENV=development && export DEBUG=express:* && supervisor -w server,routes,app.js app",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf lib && babel src -d lib && cp -rf src/views lib/views",
"serve": "node lib/app.js",
"pm2": "pm2 start lib/app.js",
"lint": "./node_modules/eslint/bin/eslint.js -c .eslintrc src/** --ignore-pattern **/*.yml --quiet --fix"
},
"author": "wumin",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"express-resource": "^1.0.0",
"jade": "^1.11.0",
"log4js": "^2.4.1",
"mysql": "^2.15.0",
"orm": "^4.0.1",
"redis": "^2.8.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.14.0",
"nodemon": "^1.12.1"
}
}