-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "recipe-spoonacular",
"private": true,
"version": "2.0.1",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev --turbo",
"dev:webpack": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio",
"scripts:delete-users": "npx tsx scripts/delete-all-users.ts"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.15.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@sentry/nextjs": "^10.70.0",
"@tanstack/react-query": "^5.90.12",
"@upstash/qstash": "^2.8.4",
"@upstash/redis": "^1.36.1",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.8.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"framer-motion": "^12.23.25",
"lucide-react": "^0.556.0",
"next": "15.5.9",
"next-auth": "^5.0.0-beta.30",
"posthog-js": "^1.328.0",
"react": "^18.3.1",
"react-day-picker": "^9.12.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.71.1",
"react-icons": "^5.3.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.5",
"@tailwindcss/typography": "^0.5.19",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vercel/node": "^2.3.0",
"autoprefixer": "^10.4.22",
"daisyui": "^5.5.8",
"eslint": "^9.39.5",
"eslint-config-next": "15.5.9",
"postcss": "^8.5.6",
"prisma": "^6.15.0",
"tailwindcss": "^3.4.18",
"typescript": "^5.7.2",
"vitest": "^4.1.8"
}
}