-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.88 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.88 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
92
93
94
{
"name": "synergysphere",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"postinstall": "npm rebuild lightningcss --update-binary || true",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun run src/lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"db:clear": "bun run src/lib/db/clear-database.ts",
"db:clear-data": "bun run src/lib/db/clear-data.ts",
"db:migrate:image": "bun run src/scripts/run-migrations.ts",
"lint": "next lint"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@hookform/resolvers": "^5.0.1",
"@langchain/community": "^0.3.47",
"@langchain/core": "^0.3.61",
"@langchain/langgraph": "^0.3.6",
"@langchain/openai": "^0.4.9",
"@neondatabase/serverless": "^1.0.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@t3-oss/env-nextjs": "^0.13.4",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.76.1",
"@types/uuid": "^10.0.0",
"ai": "^3.4.33",
"better-auth": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.8.2",
"emoji-picker-react": "^4.12.3",
"framer-motion": "^12.16.0",
"langchain": "^0.3.29",
"lightningcss": "^1.30.1",
"lucide-react": "^0.503.0",
"next": "^15.3.3",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.3",
"react": "^19.1.0",
"react-day-picker": "^9.7.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.56.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.0",
"uuid": "^11.1.0",
"zod": "^3.25.1",
"zustand": "^5.0.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.6",
"@types/node": "^20.17.47",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"drizzle-kit": "^0.31.1",
"tailwindcss": "^4.1.6",
"tw-animate-css": "^1.2.9",
"typescript": "^5.8.3"
},
"trustedDependencies": [
"@tailwindcss/oxide"
],
"optionalDependencies": {
"lightningcss-linux-x64-gnu": "^1.30.1"
}
}