-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.06 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.06 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
{
"name": "not-a-wrapper",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.1",
"scripts": {
"dev": "concurrently --names \"next,convex\" -c \"cyan,magenta\" \"next dev\" \"convex dev\"",
"dev:clean": "rm -rf .next && bun run dev",
"dev:next": "next dev",
"dev:convex": "convex dev",
"build": "convex deploy --cmd 'next build' --yes",
"build:next": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.41",
"@ai-sdk/google": "^3.0.24",
"@ai-sdk/mcp": "1.0.18",
"@ai-sdk/mistral": "3",
"@ai-sdk/openai": "^3.0.26",
"@ai-sdk/perplexity": "3",
"@ai-sdk/provider": "^3.0.8",
"@ai-sdk/provider-utils": "^4.0.14",
"@ai-sdk/react": "^3.0.80",
"@ai-sdk/xai": "3",
"@base-ui/react": "^1.1.0",
"@clerk/nextjs": "^6.37.1",
"@clerk/themes": "^2.4.51",
"@hookform/resolvers": "^5.2.2",
"@hugeicons-pro/core-solid-rounded": "^3.1.0",
"@hugeicons-pro/core-stroke-rounded": "^3.1.0",
"@hugeicons/react": "^1.1.4",
"@openrouter/ai-sdk-provider": "2",
"@tanstack/react-query": "^5.90.20",
"ai": "^6.0.78",
"class-variance-authority": "^0.7.1",
"claude-code": "^1.0.0",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"convex": "^1.31.7",
"date-fns": "^4.1.0",
"dompurify": "^3.2.5",
"embla-carousel-react": "^8.6.0",
"exa-js": "^1.6.13",
"file-type": "^20.4.1",
"idb-keyval": "^6.2.1",
"input-otp": "^1.4.2",
"input-otp-react": "^1.0.1",
"jsdom": "^26.0.0",
"motion": "^12.29.2",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"postcss": "^8.5.3",
"posthog-js": "^1.336.4",
"posthog-node": "^5.24.9",
"react": "^19.2.4",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.5.8",
"react-use-measure": "^2.1.7",
"recharts": "3.7.0",
"rehype-katex": "^7.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"shiki": "^3.22.0",
"slugify": "^1.6.6",
"sonner": "^2.0.7",
"svix": "^1.84.1",
"tailwind-merge": "^3.4.0",
"unified": "^11.0.5",
"use-stick-to-bottom": "^1.1.2",
"vaul-base": "^1.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@next/bundle-analyzer": "^16",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/react": "^19.2.10",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "^16.1.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.5",
"tw-animate-css": "^1.2.9",
"typescript": "^5",
"vitest": "^4.0.18"
}
}