-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 966 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
{
"name": "express-minimal-starter",
"version": "1.0.0",
"description": "express-minimal-starter",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/standard",
"start": "./node_modules/.bin/babel src --out-dir=./dist && cross-env NODE_ENV=production node ./dist/app.js",
"dev": "cross-env NODE_ENV=development babel-watch src/app.js | ./node_modules/.bin/bunyan"
},
"author": "Zhenchao Chen",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-promise-router": "^2.0.0",
"helmet": "^3.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babel-watch": "2.0.7",
"cross-env": "5.1.1",
"standard": "^10.0.3"
},
"standard": {
"ignore": [
"**/dist/"
]
}
}