-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.7 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "game-race-shuffler",
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "rimraf --glob packages/**/*.tsbuildinfo packages/**/dist packages/**/html",
"compile": "./compile.sh",
"lint": "eslint -c .eslint.cjs --fix packages/**/*.ts",
"dev:server": "npm run --workspace packages/server dev",
"dev:web": "npm run --workspace packages/coordinator dev",
"build": "npm run build --workspaces",
"build:client": "npm run build --workspace packages/client",
"build:web": "npm run build --workspace packages/coordinator",
"build:server": "npm run build --workspace packages/server",
"build:shared": "npm run build --workspace packages/shared -- --force",
"start:clientA": "npm run --workspace packages/client start -- --config=client-config-A.ini",
"start:clientB": "npm run --workspace packages/client start -- --config=client-config-B.ini",
"start:server": "npm run --workspace packages/server start",
"test": "npm run test --workspaces --if-present"
},
"keywords": [],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Gikkman/game-race-shuffler.git"
},
"author": "Gikkman",
"bugs": {
"url": "https://github.com/Gikkman/game-race-shuffler/issues"
},
"homepage": "https://github.com/Gikkman/game-race-shuffler#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.25.0",
"glob": "^10.4.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20",
"npm": ">=10"
}
}