-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 684 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "nextjs-prisma-example",
"version": "1.0.0",
"description": "Next.js with Prisma ORM",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev"
},
"dependencies": {
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@prisma/client": "^5.7.0",
"zod": "^3.22.4",
"next-auth": "^4.24.5",
"@auth/prisma-adapter": "^1.0.12"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"typescript": "^5.3.2",
"prisma": "^5.7.0"
}
}