-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 948 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
{
"name": "ddm",
"version": "1.0.0",
"scripts": {
"buildCommon": "cd common && npm install && npm run build",
"buildFrontend": "cd frontend && npm install && npm run build",
"buildBackend": "cd backend && npm install && npm run build",
"build": "npm run buildCommon && concurrently npm:buildFrontend npm:buildBackend",
"devFrontend": "cd frontend && npm install && npm run dev",
"devBackend": "cd backend && npm install && npm run dev",
"dev": "npm run buildCommon && concurrently ---handle-input --default-input-target 1 npm:devBackend npm:devFrontend",
"docker": "npm run build && docker build -f docker/Dockerfile . -t dynamitedanmultiplayer",
"redeploy": "npm run docker && cd deployment && ./pushToDigitalOcean.sh && ./k8s-redeploy.sh",
"robots": "node test/robots.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2",
"puppeteer": "^22.10.0"
}
}