-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "blog-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"description": "Blog Server",
"author": "thanh le",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"faker": "^4.1.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"ejs": "^2.6.1",
"express": "^4.15.4",
"express-fileupload": "^1.0.0",
"express-validation": "^1.0.2",
"fs-extra": "^7.0.1",
"http-status": "^1.0.1",
"joi": "^14.3.0",
"jsonwebtoken": "^8.4.0",
"morgan": "^1.8.2",
"pg": "^6.1.3",
"pg-hstore": "^2.3.2",
"pm2": "^3.2.3",
"request": "^2.88.0",
"sequelize": "^4.42.0",
"swagger-jsdoc": "^1.9.7",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"scripts": {
"start": "nodemon ./bin/www",
"pm2:start": "pm2 start ./bin/www --name blog-server-es7",
"pm2:stop": "pm2 stop ./bin/www"
}
}