Files
react-boilerplate/package.json
2025-09-01 20:01:21 +08:00

36 lines
837 B
JSON

{
"name": "game-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.0.0",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome check --write ./src",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.12",
"postmate": "^1.5.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router": "^7.8.2",
"tailwindcss": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@types/postmate": "^1.5.4",
"@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"
}
}