feat: initialize Next.js project with Prisma, authentication, and rankings page

This commit is contained in:
2026-03-27 14:50:00 -07:00
parent 96f7cb86d3
commit 66e4baa643
208 changed files with 8522 additions and 9035 deletions
+28 -3
View File
@@ -1,9 +1,34 @@
{
"name": "euchre_camp",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"hanami-assets": "^2.1.1",
"playwright": "^1.58.2"
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.19.2",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.3",
"next": "16.2.1",
"next-auth": "^4.24.13",
"prisma": "^6.19.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.72.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}