prisma sqllite 초기화

This commit is contained in:
koreacomp5
2025-10-08 23:04:12 +09:00
parent f0640478da
commit 3c0e242603
10 changed files with 522 additions and 8 deletions

View File

@@ -7,20 +7,30 @@
"build": "next build --turbopack",
"start": "next start",
"lint": "biome check",
"format": "biome format --write"
"format": "biome format --write",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"prisma:db:push": "prisma db push",
"prisma:seed": "node prisma/seed.js"
},
"dependencies": {
"@prisma/client": "^6.17.0",
"next": "15.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"next": "15.5.4"
"react-dom": "19.1.0"
},
"devDependencies": {
"typescript": "^5",
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"prisma": "^6.17.0",
"tailwindcss": "^4",
"@biomejs/biome": "2.2.0"
"typescript": "^5"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}