-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.75 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.75 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
95
96
{
"private": true,
"license": "AGPL-3.0",
"name": "harmonica-web-app",
"version": "0.1.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"migrate": "tsx src/db/migrator.ts",
"migrate:down": "tsx src/db/migrator.ts down"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.8.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@llamaindex/anthropic": "^0.3.26",
"@llamaindex/google": "^0.4.0",
"@llamaindex/openai": "^0.4.22",
"@neondatabase/serverless": "^0.10.4",
"@qdrant/js-client-rest": "^1.16.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@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-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@stripe/stripe-js": "^7.9.0",
"@types/marked": "^5.0.2",
"@vercel/analytics": "^1.6.1",
"@vercel/blob": "^0.27.3",
"@vercel/postgres": "^0.10.0",
"@vercel/postgres-kysely": "^0.10.0",
"braintrust": "^2.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.0",
"dotenv": "^16.6.1",
"framer-motion": "^12.23.25",
"isbot": "^5.1.32",
"jspdf": "^4.0.0",
"kysely": "^0.27.6",
"llamaindex": "^0.12.1",
"lucide-react": "^0.381.0",
"marked": "^15.0.12",
"next": "^14.2.33",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.11",
"openai": "^4.104.0",
"pdf2json": "^3.2.2",
"pg": "^8.16.3",
"posthog-js": "^1.302.2",
"posthog-node": "^5.17.2",
"qrcode.react": "^3.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.3.8",
"react-markdown": "^9.1.0",
"react-resizable-panels": "^2.1.9",
"react-split": "^2.0.14",
"stripe": "^18.5.0",
"swr": "^2.3.7",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"ws": "^8.18.3",
"zod": "^3.25.76",
"zustand": "^4.5.7"
},
"engines": {
"node": "20.x"
},
"devDependencies": {
"@types/node": "20.13.0",
"@types/nodemailer": "^6.4.21",
"@types/react": "18.3.3",
"@types/ws": "^8.18.1",
"autoprefixer": "^10.4.22",
"constructs": "^10.4.3",
"esbuild": "^0.25.12",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}