-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.33 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.33 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "all-hands",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/common-data",
"packages/engine",
"packages/common-ui",
"packages/player-ui",
"packages/game-ui",
"packages/game-app"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:devtools": "npm run build -w packages/common-data && npm run build -w packages/common-ui && npm run build:devtools -w packages/engine && npm run build -w packages/player-ui && npm run build:devtools -w packages/game-ui && npm run build -w packages/game-app",
"dev": "concurrently --kill-others \"npm run start\" \"wait-on tcp:23552 && npx tsx launch-players.ts\"",
"start": "npm run start --workspace=packages/game-app",
"package": "npm run package --workspace=packages/game-app",
"lint": "eslint . --fix",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test:unit": "vitest --project unit",
"test:stories": "vitest --project storybook"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@storybook/addon-a11y": "^10.2.9",
"@storybook/addon-docs": "^10.2.9",
"@storybook/addon-vitest": "^10.2.9",
"@storybook/react-vite": "^10.2.9",
"@storybook/test-runner": "^0.24.2",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"ajv": "^6.12.6",
"concurrently": "^9.2.1",
"electron": "38.0.0",
"electron-builder": "^26.0.12",
"eslint": "^9.35.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.21",
"eslint-plugin-storybook": "^10.2.9",
"playwright": "^1.55.0",
"storybook": "^10.2.9",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"typescript-json-schema": "^0.67.1",
"vite": "^7.1.4",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"wait-on": "^9.0.3"
},
"dependencies": {
"@colyseus/schema": "github:FTWinston/colyseus-schema"
}
}