forked from jcunanan05/express-es6-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 817 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
{
"name": "express-es6-sample",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run prod",
"dev": "NODE_ENV=development npm run watch ./src/bin/www",
"prod": "npm run build && NODE_ENV=production node ./dist/bin/www",
"build": "npm run clean && babel ./src --out-dir dist",
"clean": "rimraf dist",
"watch": "nodemon --config ./nodemon.json --"
},
"dependencies": {
"bigint-hash": "^0.2.2",
"cookie-parser": "^1.4.4",
"debug": "~2.6.9",
"express": "~4.16.0",
"morgan": "~1.9.0",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"nodemon": "^1.19.0"
}
}