-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
33 lines (33 loc) · 1.83 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
{
"name": "elitebgs",
"version": "8.1.0",
"license": "Apache-2.0",
"scripts": {
"start:dev": "run-p start:dev:backend start:dev:eddn_listener start:dev:frontend start:dev:guild_bot start:dev:tick_listener",
"start:dev:backend": "npm run startdev --prefix backend",
"start:dev:eddn_listener": "npm run startdev --prefix eddn_listener",
"start:dev:frontend": "npm run startdev --prefix frontend",
"start:dev:guild_bot": "npm run startdev --prefix guild_bot",
"start:dev:tick_listener": "npm run startdev --prefix tick_listener",
"start:dev:tick_detector": "npm run startdev --prefix tick_detector",
"start": "run-p start:frontend start:backend start:eddn_listener start:guild_bot start:tick_listener",
"start:backend": "npm run start --prefix backend",
"start:eddn_listener": "npm run start --prefix eddn_listener",
"start:frontend": "npm run build --prefix frontend",
"start:guild_bot": "npm run start --prefix guild_bot",
"start:tick_listener": "npm run start --prefix tick_listener",
"start:tick_detector": "npm run start --prefix tick_detector",
"versionfile": "node ./versionFile.js",
"lint:fix": "run-p lint:fix:backend lint:fix:eddn_listener lint:fix:frontend lint:fix:guild_bot lint:fix:tick_listener",
"lint:fix:backend": "npm run lint:fix --prefix backend",
"lint:fix:eddn_listener": "npm run lint:fix --prefix eddn_listener",
"lint:fix:frontend": "npm run lint:fix --prefix frontend",
"lint:fix:guild_bot": "npm run lint:fix --prefix guild_bot",
"lint:fix:tick_listener": "npm run lint:fix --prefix tick_listener",
"lint:fix:tick_detector": "npm run lint:fix --prefix tick_detector"
},
"private": true,
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}