Files
WikiRush/package.json
T
jessy-david-dev 47b8de0b67 feat: add about page, global stats counter, and blitz screen updates
- Create about page with game modes, technologies, and paliers
- Add stats API endpoint for global game counter
- Update home screen with emoji-based tier system (🌱-🚀)
- Rewrite BlitzScreen to match new puzzle-based win/lose phases
- Add simple-icons package for tech stack icons
- Update metadata with wikirush.xyz domain
- Fix em dashes to hyphens throughout codebase
- Update footer with privacy and about links
2026-04-10 22:26:24 +02:00

37 lines
972 B
JSON

{
"name": "wikipedia-game",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"postinstall": "npx node-gyp rebuild --directory node_modules/.pnpm/better-sqlite3@12.8.0/node_modules/better-sqlite3 2>/dev/null || true"
},
"dependencies": {
"@prisma/client": "^7.7.0",
"bcryptjs": "^3.0.3",
"next": "16.2.3",
"next-auth": "5.0.0-beta.30",
"react": "19.2.4",
"react-dom": "19.2.4",
"simple-icons": "^16.15.0"
},
"devDependencies": {
"@prisma/adapter-better-sqlite3": "^7.7.0",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^3.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"better-sqlite3": "12",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"prisma": "7",
"tailwindcss": "^4",
"typescript": "^5"
}
}