-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 787 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 787 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
32
33
34
35
{
"name": "game",
"version": "1.5.10",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "vite",
"server": "npx tsx server/index.ts",
"dev:all": "npx concurrently \"npm run server\" \"npm run dev\"",
"build": "tsc && vite build",
"preview": "vite preview"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"better-sqlite3": "^12.5.0",
"cors": "^2.8.5",
"express": "^5.2.1",
"phaser": "^3.90.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0"
}
}