-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.35 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
112
113
114
115
116
{
"name": "loupe",
"version": "0.7.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.2",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"knip": "knip",
"prepare": "[ -n \"$CI\" ] || lefthook install",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.0",
"@ai-sdk/azure": "^4.0.0",
"@ai-sdk/openai": "^4.0.0",
"@ai-sdk/otel": "^1.0.2",
"@ai-sdk/react": "^4.0.3",
"@clickhouse/client": "^1.23.0",
"@fontsource-variable/fira-code": "^5.2.7",
"@modelcontextprotocol/sdk": "^1.29.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.219.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-trace-node": "^2.8.0",
"@pydantic/genai-prices": "^0.0.60",
"@radix-ui/react-use-controllable-state": "^1.2.3",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.100.10",
"@tanstack/react-router": "^1.169.2",
"@tanstack/react-router-ssr-query": "^1.166.12",
"@tanstack/react-start": "^1.167.65",
"@tanstack/react-table": "^8.21.3",
"@tanstack/router-plugin": "^1.132.0",
"ai": "^7.0.2",
"better-auth": "^1.6.22",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"gpt-tokenizer": "^3.4.0",
"lru-cache": "^11.4.0",
"lucide-react": "^1.17.0",
"motion": "^12.40.0",
"next-themes": "^0.4.6",
"nitro": "npm:nitro-nightly@3.0.1-20260512-093145-0498ce70",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-day-picker": "^9.11.0",
"react-dom": "^19.2.0",
"react-resizable-panels": "^4.11.1",
"recharts": "3.8.0",
"sonner": "^2.0.7",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"use-stick-to-bottom": "^1.1.4",
"usehooks-ts": "^3.1.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@playwright/test": "^1.60.0",
"@tailwindcss/typography": "^0.5.16",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^25.7.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.2",
"dotenv": "^17.3.1",
"knip": "^6.14.1",
"lefthook": "^2.1.6",
"shadcn": "^4.7.0",
"typescript": "^6.0.2",
"vite": "^8.0.16",
"vite-plugin-checker": "^0.13.0",
"vitest": "^4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"lefthook",
"lightningcss",
"msw"
],
"overrides": {
"undici": ">=7.28.0 <8",
"hono": ">=4.12.25 <5",
"dompurify": ">=3.4.11 <4",
"js-yaml": ">=4.2.0 <5",
"@babel/core": ">=7.29.6 <8",
"esbuild": ">=0.28.1 <0.29"
}
}
}