-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "dropify",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@prisma/client": "^6.19.3",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"clsx": "^2.1.1",
"date-fns": "^4.2.1",
"lucide-react": "^1.16.0",
"next": "^16.2.6",
"next-auth": "^4.24.14",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"resend": "^6.12.3",
"tailwind-merge": "^2.3.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/web-push": "^3.6.3",
"eslint": "^9",
"eslint-config-next": "^16.2.6",
"postcss": "^8.5.15",
"prisma": "^6.19.3",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
},
"overrides": {
"postcss": "^8.5.15",
"cookie": "^1.1.1",
"uuid": "^11.1.1"
}
}