mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 01:15:42 -06:00
- Replace Mantine UI components with Tailwind CSS v4 - Migrate from static HTML to Vike-based SSR framework - Disable SSR for game page (Emscripten requires browser environment) - Simplify Emscripten loading to avoid hydration conflicts - Remove Tailwind download logic from web.build.ts - Add package manager lockfiles for reproducible builds - Update .gitignore for node_modules and build artifacts
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"scripts": {
|
|
"preinstall": "npx only-allow bun",
|
|
"dev": "vike dev",
|
|
"build": "vike build",
|
|
"preview": "vike preview",
|
|
"lint": "eslint ."
|
|
},
|
|
"name": "pacman-web",
|
|
"description": "A web frontend for the Pac-Man game, including leaderboards and OAuth.",
|
|
"dependencies": {
|
|
"@fontsource/nunito": "^5.2.7",
|
|
"@fontsource/pixelify-sans": "^5.2.7",
|
|
"@tabler/icons-react": "^3.35.0",
|
|
"@vitejs/plugin-react": "^5.0.2",
|
|
"react": "^19.1.1",
|
|
"react-animated-numbers": "^1.1.1",
|
|
"react-dom": "^19.1.1",
|
|
"vike": "^0.4.240",
|
|
"vike-react": "^0.6.5"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.35.0",
|
|
"@tailwindcss/vite": "^4.1.13",
|
|
"@types/react": "^19.1.12",
|
|
"@types/react-dom": "^19.1.9",
|
|
"eslint": "^9.35.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"globals": "^16.3.0",
|
|
"postcss": "^8.5.6",
|
|
"postcss-simple-vars": "^7.0.1",
|
|
"prettier": "^3.6.2",
|
|
"tailwindcss": "^4.1.13",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "^8.42.0",
|
|
"vite": "^7.1.4"
|
|
},
|
|
"type": "module"
|
|
}
|