forked from gabrielvaldivia/big-year
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1010 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1010 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
32
33
34
35
36
37
{
"name": "big-ass-calendar",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"postinstall": "prisma generate",
"build": "prisma generate && next build",
"vercel-build": "prisma generate && prisma db push && next build",
"start": "next start",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --name init"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.12",
"@prisma/client": "^5.18.0",
"@radix-ui/react-select": "^2.2.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"next": "^14.2.10",
"next-auth": "4.24.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/react": "19.2.7",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.14",
"typescript": "5.6.3"
}
}