-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 927 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 927 Bytes
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
{
"name": "crystalfront-rts",
"version": "0.1.38",
"private": true,
"description": "A multiplayer browser RTS prototype",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch server/src/index.ts",
"dev:client": "npm -w client run dev",
"build": "npm run build:shared && npm run build:client && npm run build:server",
"build:shared": "npm -w shared run build",
"build:client": "npm -w client run build",
"build:server": "tsc -p server/tsconfig.json",
"start": "node server/dist/index.js",
"test": "tsx tests/index.ts",
"test:server": "tsx tests/index.ts"
},
"workspaces": [
"client",
"server",
"shared"
],
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"concurrently": "^9.1.0",
"@types/node": "^22.10.0",
"@types/express": "^4.17.21",
"@types/ws": "^8.5.0"
}
}