-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 702 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "elitebgs",
"version": "2.0.0",
"license": "Apache-2.0",
"scripts": {
"startdev": "run-p startdevbackend startdevfrontend startdevguildbot",
"startdevbackend": "npm run startdev --prefix backend",
"startdevfrontend": "npm run startdev --prefix frontend",
"startdevguildbot": "npm run startdev --prefix guild_bot",
"start": "run-p startfrontend startbackend startguildbot",
"startbackend": "npm run start --prefix backend",
"startfrontend": "npm run build --prefix frontend",
"startguildbot": "npm run start --prefix guild_bot",
"versionfile": "node ./versionFile.js"
},
"private": true,
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}