-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 909 Bytes
/
package.json
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
29
30
31
32
33
34
35
36
37
38
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate --no-engine"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@prisma/client": "6.3.0",
"@prisma/extension-accelerate": "^1.2.1",
"next": "15.1.5",
"next-auth": "^5.0.0-beta.25",
"obscenity": "0.4.3",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"eslint": "9.18.0",
"eslint-config-next": "15.1.5",
"postcss": "8.5.1",
"prisma": "6.3.0",
"tailwindcss": "3.4.17",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}