-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 929 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
31
32
33
34
35
{
"name": "antdpro-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pm2": "pm2 stop app.js --name antdpro-express && pm2 start app.js --name antdpro-express",
"dev": "dotenv -e .env.dev nodemon app.js",
"sit": "dotenv -e .env.sit nodemon app.js",
"uat": "dotenv -e .env.uat nodemon app.js",
"prod": "dotenv -e .env.prod nodemon app.js",
"deploy": "bash deploy.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"express-validator": "^6.14.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.11.4",
"node-xlsx": "^0.23.0",
"pm2": "^5.2.0"
},
"devDependencies": {
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"nodemon": "^2.0.6"
}
}