-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "game-monster",
"private": true,
"version": "2.0.0",
"description": "A compact bilingual browser survival game with real-time combat, upgrades, and local saves.",
"homepage": "https://shenzhepei.github.io/game-monster/",
"type": "module",
"packageManager": "pnpm@10.33.2",
"engines": { "node": "24.x" },
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc --noEmit -p tsconfig.app.json && vite build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"preview": "vite preview --host 0.0.0.0"
},
"dependencies": {
"i18next": "25.5.2",
"lucide-react": "0.468.0",
"phaser": "3.90.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "15.7.3"
},
"devDependencies": {
"@testing-library/react": "16.3.2",
"@types/node": "24.13.3",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "6.0.5",
"@vitest/coverage-v8": "4.1.11",
"jsdom": "30.0.1",
"sass": "1.102.0",
"typescript": "5.9.3",
"vite": "8.2.1",
"vitest": "4.1.11"
}
}