54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "minesweeper",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run dev.ts",
|
|
"dev:backend": "bun run backend/index.ts --watch",
|
|
"dev:client": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview",
|
|
"drizzle:schema": "drizzle-kit generate --dialect sqlite --schema ./backend/schema.ts --out ./backend/drizzle",
|
|
"drizzle:migrate": "bun run backend/migrate.ts"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/vite": "^4.0.0-alpha.24",
|
|
"@tanstack/react-query": "^5.56.2",
|
|
"@uidotdev/usehooks": "^2.4.1",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.1",
|
|
"drizzle-orm": "^0.33.0",
|
|
"framer-motion": "^11.5.6",
|
|
"jotai": "^2.10.0",
|
|
"lucide-react": "^0.441.0",
|
|
"react": "^18.3.1",
|
|
"react-confetti-boom": "^1.0.0",
|
|
"react-dom": "^18.3.1",
|
|
"react-hot-toast": "^2.4.1",
|
|
"tailwind-merge": "^2.5.2",
|
|
"tailwindcss": "^4.0.0-alpha.24",
|
|
"use-sound": "^4.0.3",
|
|
"wouter": "^3.3.5",
|
|
"zod": "^3.23.8",
|
|
"zustand": "^4.5.5"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.10.0",
|
|
"@types/bun": "latest",
|
|
"@types/react": "^18.3.8",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react-swc": "^3.7.0",
|
|
"drizzle-kit": "^0.24.2",
|
|
"eslint": "^9.10.0",
|
|
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
"eslint-plugin-react-refresh": "^0.4.12",
|
|
"globals": "^15.9.0",
|
|
"typescript": "^5.6.2",
|
|
"typescript-eslint": "^8.6.0",
|
|
"vite": "^5.4.6"
|
|
},
|
|
"module": "index.ts"
|
|
}
|