-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
54 lines (54 loc) · 1.38 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
47
48
49
50
51
52
53
54
{
"name": "backend-node-express",
"version": "1.5.2",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development nodemon src --exec babel-node",
"build": "babel src -d dist",
"prod": "pm2-runtime start ecosystem.config.js --env production"
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"http-status": "^1.5.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^6.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"nodemailer": "^6.6.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pm2": "^5.1.1",
"sharp": "^0.29.1",
"uuid": "^8.3.2",
"validator": "^13.6.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.4",
"@babel/node": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-plugin-root-import": "^6.6.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.0"
}
}