프리즈마 세팅팅

This commit is contained in:
wallace
2025-11-10 21:57:28 +09:00
parent 9a11a8afd1
commit 512acfb921
12 changed files with 1400 additions and 3 deletions

View File

@@ -6,12 +6,21 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
"lint": "eslint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "^6.19.0",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.4.1",
"dotenv": "^17.2.3",
"next": "16.0.1",
"prisma": "^6.19.0",
"react": "19.2.0",
"react-dom": "19.2.0"
},