-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "express-12306",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rimraf dist",
"babel": "babel ./src --out-dir dist",
"build": "cross-env NODE_ENV=production npm run clean && npm run babel",
"start": "pm2 start pm2.json",
"stop": "pm2 delete pm2.json",
"restart": "pm2 restart pm2.json",
"dev": "cross-env NODE_ENV=development nodemon ./src/main.js --exec babel-node"
},
"dependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"awilix": "^4.3.0",
"awilix-express": "^3.0.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.4",
"cross-env": "^7.0.3",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "^1.8.0",
"less-middleware": "~2.2.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"morgan": "~1.9.1",
"node-schedule": "^1.3.2",
"nodemailer": "^6.4.16",
"nodemon": "^2.0.6",
"pm2": "^4.5.0",
"rimraf": "^3.0.2"
}
}