-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1 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
{
"name": "game",
"private": true,
"packageManager": "pnpm@10.15.0",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -n SERVER,CLIENT -c blue,green \"pnpm -C packages/server dev\" \"pnpm -C packages/client dev\"",
"prod": "concurrently -n SERVER,CLIENT -c blue,green \"pnpm -C packages/server dev\" \"pnpm -C packages/client prod\"",
"build": "pnpm -C packages/shared build && pnpm -C packages/server build && pnpm -C packages/client build",
"start": "pnpm -C packages/server start",
"typecheck": "pnpm -C packages/shared typecheck && pnpm -C packages/server typecheck && pnpm -C packages/client typecheck",
"lint": "eslint .",
"format": "prettier -w ."
},
"devDependencies": {
"concurrently": "^9.0.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.2.0",
"prettier": "^3.3.3",
"tsx": "^4.20.5",
"turbo": "^2.0.9",
"typescript": "^5.9.2"
}
}