Files
whattoplay/package.json

56 lines
1.4 KiB
JSON

{
"name": "whattoplay",
"private": true,
"version": "2026.03.01",
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "cd server && bun run dev",
"dev:all": "bun run dev & bun run dev:server",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@electric-sql/pglite": "^0.2.17",
"@tanstack/react-form": "^1.0.0",
"@tanstack/react-router": "^1.114.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hono": "^4.7.0",
"lucide-react": "^0.474.0",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.5.0",
"zod": "^3.24.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@tailwindcss/vite": "^4.0.0",
"@tanstack/router-plugin": "^1.114.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.4.0",
"lint-staged": "^15.0.0",
"simple-git-hooks": "^2.11.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.2.0",
"vite-plugin-pwa": "^0.21.0",
"vitest": "^3.0.0",
"workbox-window": "^7.0.0"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,json}": ["biome check --write"]
}
}