This commit is contained in:
rex
2025-08-28 14:30:06 +08:00
parent bd804045e6
commit 8dd468a5e3
21 changed files with 2143 additions and 81 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "game-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome check --write ./src",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.12",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router": "^7.8.2",
"tailwindcss": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"globals": "^16.3.0",
"typescript": "~5.8.3",
"vite": "^7.1.2"
}
}