-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 795 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 795 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
29
30
31
{
"name": "project-fullstack",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"postinstall": "prisma generate",
"vercel-build": "prisma db push --accept-data-loss && next build --turbopack"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@heroicons/react": "^2.2.0",
"@prisma/client": "^6.18.0",
"next": "15.5.9",
"next-auth": "^4.24.11",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"prisma": "^6.18.0",
"tailwindcss": "^4"
}
}