-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.54 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.54 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
81
82
83
84
85
86
87
88
89
90
{
"name": "auth0-assistant0",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/bO-05/assistantzero.git"
},
"homepage": "https://assistant0agent.vercel.app",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next build && next start",
"lint": "next lint",
"format": "prettier --write \"src\"",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/lib/db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check",
"fga:init": "tsx src/lib/fga/fga-init.ts"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@ai-sdk/mistral": "^2.0.19",
"@ai-sdk/openai": "2.0.24",
"@ai-sdk/react": "2.0.33",
"@auth0/ai-vercel": "^4.0.1",
"@auth0/nextjs-auth0": "4.4.2",
"@langchain/community": "^0.3.53",
"@radix-ui/react-avatar": "^1.1.7",
"@radix-ui/react-checkbox": "^1.2.3",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-popover": "^1.1.11",
"@radix-ui/react-slot": "^1.2.0",
"@vercel/analytics": "^1.5.0",
"ai": "5.0.33",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.7.1",
"exa-js": "^1.10.2",
"googleapis": "^161.0.0",
"llm-chunk": "^0.0.1",
"lucide-react": "^0.475.0",
"marked": "^15.0.7",
"nanoid": "^5.1.5",
"next": "15.2.8",
"next-themes": "^0.4.4",
"nuqs": "^2.4.3",
"pdf-parse": "^1.1.1",
"postgres": "^3.4.5",
"react": "19.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "19.0.0",
"react-markdown": "^10.0.0",
"react-toastify": "11.0.3",
"sonner": "^1.7.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"use-stick-to-bottom": "^1.0.44",
"vaul": "^1.1.2",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.1.7",
"@types/node": "^22.13.4",
"@types/pdf-parse": "^1.1.5",
"@types/react": "19.0.9",
"@types/react-dom": "19.0.3",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.31.1",
"eslint": "^9.20.1",
"eslint-config-next": "^15.1.7",
"npm-run-all": "^4.1.5",
"postcss": "8.5.2",
"prettier": "^3.4.2",
"tailwindcss": "3.4.17",
"tsx": "^4.19.4",
"typescript": "5.7.3"
}
}