-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.53 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.53 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
78
79
80
{
"name": "portfolio",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" next dev --experimental-https",
"build": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:reset": "prisma db push --force-reset",
"db:studio": "prisma studio"
},
"dependencies": {
"@clerk/nextjs": "^6.2.1",
"@daily-co/daily-js": "^0.80.0",
"@hookform/resolvers": "^3.9.1",
"@prisma/client": "^6.8.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-query": "^5.59.20",
"@types/node": "^22.10.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@uploadthing/react": "^7.3.1",
"@vapi-ai/web": "^2.3.5",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^4.1.0",
"framer-motion": "^11.18.2",
"lucide-react": "^0.456.0",
"nanoid": "^5.1.5",
"next": "15.0.3",
"next-themes": "^0.4.3",
"prisma": "^6.8.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-intersection-observer": "^9.13.1",
"react-siriwave": "^3.1.0",
"react-vertical-timeline-component": "^3.6.0",
"resend": "^4.0.1",
"sharp": "^0.33.5",
"sonner": "^2.0.5",
"svix": "^1.67.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"uploadthing": "^7.3.0",
"zod": "^3.23.8",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/react-vertical-timeline-component": "^3.3.6",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.3",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
}
}