-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (90 loc) · 2.61 KB
/
package.json
File metadata and controls
91 lines (90 loc) · 2.61 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
91
{
"name": "leafra",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:worker": "tsc --watch ./lib/worker.ts && bunx nodemon ./lib/worker.js",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"dependencies": {
"@ai-sdk/google": "^3.0.64",
"@ai-sdk/react": "^3.0.0",
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^5.2.2",
"@langchain/community": "^0.3.59",
"@langchain/core": "^0.3.80",
"@langchain/google-genai": "^0.2.18",
"@langchain/textsplitters": "^0.1.0",
"@pinecone-database/pinecone": "^5.1.2",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@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",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.0",
"@tanstack/react-query": "^5.100.5",
"@types/three": "^0.177.0",
"@uploadthing/react": "^7.3.3",
"@upstash/redis": "^1.37.0",
"ai": "^6.0.168",
"better-auth": "^1.6.9",
"bullmq": "^5.76.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.44.7",
"framer-motion": "^12.38.0",
"isomorphic-dompurify": "^3.10.0",
"lucide-react": "^0.513.0",
"motion": "^12.38.0",
"next": "^16.2.4",
"next-themes": "^0.4.6",
"nodemon": "^3.1.11",
"pg": "^8.18.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"react-pdf": "^10.4.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"three": "^0.181.2",
"uploadthing": "^7.7.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "^22.19.17",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"baseline-browser-mapping": "^2.10.23",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}