-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:indexes": "npx ts-node --project tsconfig.json scripts/create-indexes.ts"
},
"dependencies": {
"@ai-sdk/google": "^3.0.26",
"@ai-sdk/openai": "^3.0.27",
"@auth/mongodb-adapter": "^3.10.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-slot": "^1.2.2",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.1",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"ai": "^6.0.81",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.1",
"framer-motion": "^12.23.12",
"ioredis": "^5.9.2",
"lucide-react": "^0.511.0",
"mongodb": "^6.0.0",
"next": "^16.1.6",
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3"
}
}