-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 813 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 813 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
{
"name": "amongus-browser-template",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "concurrently -k -n server,client -c blue,green \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "node --experimental-transform-types --watch server/index.ts",
"dev:client": "vite",
"typecheck": "tsc",
"build": "npm run typecheck && vite build",
"preview": "vite preview --host 0.0.0.0 --port 4173",
"server": "node --experimental-transform-types server/index.ts"
},
"dependencies": {
"@colyseus/schema": "^4.0.19",
"colyseus": "^0.17.8",
"cors": "^2.8.6",
"express": "^5.1.0"
},
"devDependencies": {
"@colyseus/sdk": "^0.17.35",
"concurrently": "^9.2.1",
"phaser": "^3.90.0",
"vite": "^8.0.3"
}
}