-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 895 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
{
"name": "terraria-map-editor-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=development node server.js",
"api:start:dev": "cross-env NODE_ENV=development pm2 start configs/pm2.config.js --env development",
"api:start": "cross-env NODE_ENV=production pm2 start configs/pm2.config.js --env production",
"api:restart": "pm2 restart api",
"api:stop": "pm2 delete api",
"api:monitor": "pm2 monit api"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"express-mysql-session": "^2.1.5",
"express-session": "^1.17.1",
"helmet": "^4.4.1",
"isemail": "^3.2.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"pm2": "^4.5.4"
},
"devDependencies": {}
}