-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
44
45
46
{
"name": "blog-backend",
"version": "1.0.0",
"description": "my blog backend",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production supervisor --harmony index.js",
"dev": "node index.js"
},
"keywords": [
"node"
],
"author": "kk",
"license": "GPL-3.0",
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.3.0",
"config-lite": "^2.1.0",
"cookie-parser": "^1.4.3",
"cross-env": "^5.1.3",
"express": "^4.16.2",
"express-winston": "^2.4.0",
"formidable": "^1.1.1",
"jsonwebtoken": "^8.1.0",
"log4js": "^2.5.2",
"mongoose": "^5.0.0-rc0",
"node-uuid": "^1.4.8",
"supervisor": "^0.12.0",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"eslint": "^4.16.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
}
}