-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.38 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.38 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "morphic",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"migrate": "bun run lib/db/migrate.ts",
"test": "NODE_ENV=test vitest run",
"test:watch": "vitest --watch",
"chat": "bun run scripts/chat-cli.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.33",
"@ai-sdk/gateway": "^3.0.29",
"@ai-sdk/google": "^3.0.18",
"@ai-sdk/openai": "^3.0.23",
"@ai-sdk/react": "^3.0.66",
"@aws-sdk/client-s3": "^3.850.0",
"@opentelemetry/api-logs": "0.57.2",
"@opentelemetry/instrumentation": "0.57.2",
"@opentelemetry/sdk-logs": "0.57.2",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.4",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-tooltip": "^1.2.4",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"@tailwindcss/typography": "^0.5.12",
"@upstash/redis": "^1.35.5",
"@vercel/analytics": "^1.5.0",
"@vercel/otel": "^1.13.0",
"ai": "^6.0.64",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.0",
"cmdk": "1.0.0",
"dotenv": "^17.2.1",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.3",
"embla-carousel-react": "^8.0.0",
"exa-js": "^1.0.12",
"js-tiktoken": "^1.0.20",
"jsdom": "^26.1.0",
"katex": "^0.16.10",
"langfuse-vercel": "^3.38.4",
"lucide-react": "^0.507.0",
"next": "^16.1.6",
"next-themes": "^0.3.0",
"node-html-parser": "^6.1.13",
"ollama-ai-provider-v2": "^1.5.0",
"postgres": "^3.4.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.0.1",
"react-textarea-autosize": "^8.5.3",
"redis": "^4.7.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^1.4.41",
"streamdown": "^1.2.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.0.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^8",
"eslint-config-next": "^14.2.33",
"eslint-plugin-simple-import-sort": "^12.1.1",
"postcss": "^8",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.11",
"typescript": "^5",
"vitest": "^3.1.3"
},
"engines": {
"bun": "1.2.12"
}
}