-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1.35 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
{
"name": "nft-game-server",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "SYNC=FALSE jest --setupFiles dotenv/config --forceExit --coverage",
"start": "SYNC=FALSE pm2-runtime start ./bin/www --name project",
"restart": "SYNC=FALSE pm2 restart ./bin/www --name project --watch --ignore-watch=\"node_modules/* .git/* logs/*\" --time --update-env",
"restart_s": "SYNC=TRUE pm2 restart ./bin/www --name project --watch --ignore-watch=\"node_modules/* .git/* logs/*\" --time --update-env",
"start_s": "SYNC=TRUE pm2 start ./bin/www --name project --watch --ignore-watch=\"node_modules/* .git/* logs/*\" --time --update-env"
},
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^1.1.3",
"caver-js": "^1.9.0",
"cookie-parser": "~1.4.4",
"crypto-js": "^4.1.1",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "~4.16.1",
"fs": "0.0.1-security",
"http-errors": "~1.6.3",
"ipfs-api": "^26.1.2",
"jade": "^0.31.2",
"jest": "^28.0.3",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"redis": "^4.0.6",
"sequelize": "^6.18.0",
"supertest": "^6.2.3",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
}
}