-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·41 lines (41 loc) · 1.29 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
{
"name": "social-net",
"version": "0.0.0",
"description": "socialNet",
"main": "app.js",
"scripts": {
"dev_gen": "NODE_ENV='dev' GEN_DOC='true' nodemon --ignore '*.json' app.js",
"dev": "NODE_ENV='dev' GEN_DOC='false' nodemon --ignore '*.json' app.js",
"dev_win": "SET NODE_ENV=dev && SET GEN_DOC=false && nodemon --ignore '*.json' app.js",
"dev_win_gen": "SET NODE_ENV=dev && SET GEN_DOC=true && nodemon --ignore '*.json' app.js",
"prod": "NODE_ENV='prod' pm2 start app.js --name backend"
},
"author": "war-turtle",
"license": "MIT",
"dependencies": {
"async": "^2.6.1",
"babel-eslint": "^8.2.6",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-bundle": "^2.0.4",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"fs-extra": "^7.0.0",
"helmet": "^3.13.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.2.5",
"morgan": "^1.9.1",
"node-fetch": "^2.2.0",
"nodemon": "^1.18.3",
"pm2": "^3.0.3",
"swagger-jsdoc": "^3.2.3",
"winston": "^3.0.0",
"winston-daily-rotate-file": "^3.3.0"
}
}