-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 769 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "confettibot",
"version": "1.0.0",
"description": "README.md",
"main": "app.js",
"author": "FG",
"engines": {
"node": "10.15.3"
},
"scripts": {
"dev:client": "npm start --prefix client/",
"dev:server": "npm run dev --prefix server/",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"build": "npm run build --prefix client/ && npm run build --prefix server/",
"start": "cd build/ && pm2 start app.js",
"stop": "pm2 stop all",
"delete": "pm2 delete app",
"reload": "npm run build && npm run stop && npm run delete && npm run start "
},
"dependencies": {
"concurrently": "^4.1.0",
"memorystore": "^1.6.1"
}
}