-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.87 KB
/
package.json
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
{
"name": "turso-vector-search",
"description": "This is demo application build with Next.js, Turso, Drizzle ORM, and Vercel AI SDK.",
"version": "0.4.0",
"author": "Vivek Patel <me@patelvivek.dev>",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/google": "^1.0.11",
"@ai-sdk/mistral": "^1.0.5",
"@libsql/client": "^0.14.0",
"@mixedbread-ai/sdk": "^2.2.11",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"ai": "^4.0.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.36.4",
"lucide-react": "^0.447.0",
"marked": "^15.0.4",
"mixedbread-ai-provider": "^1.0.2",
"motion": "^11.15.0",
"next": "15.1.1-canary.12",
"next-auth": "5.0.0-beta.25",
"nuqs": "^2.2.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.1",
"react-use": "^17.6.0",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"drizzle-kit": "^0.28.1",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.1-canary.12",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}