-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.9 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
{
"name": "historian",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"bun --hot src/index.ts\" \"vite\"",
"dev:ui": "vite",
"start": "NODE_ENV=production bun src/index.ts",
"build": "concurrently \"bun run build:server\" \"bun run build:ui\"",
"build:server": "bun build --minify --target bun src/index.ts --outfile dist/server",
"build:ui": "vite build",
"build:ext": "bun run build-extension.ts",
"build:ext:firefox": "bun run build-extension.ts --firefox",
"build:ext:all": "bun run build-extension.ts --all",
"preview": "vite preview",
"test": "vitest run tests",
"lint": "oxlint",
"migrate": "bun run migrate.ts",
"db:reset": "bun run scripts/reset-db.ts"
},
"dependencies": {
"@libsql/client": "^0.15.15",
"@neondatabase/serverless": "^1.0.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.202.0",
"@opentelemetry/instrumentation": "^0.202.0",
"@opentelemetry/instrumentation-http": "^0.202.0",
"@opentelemetry/resources": "^1.29.0",
"@opentelemetry/sdk-node": "^0.202.0",
"@opentelemetry/sdk-trace-node": "^2.0.0",
"@opentelemetry/semantic-conventions": "^1.29.0",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@sentry/bun": "^8.45.0",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-virtual": "^3.13.16",
"@trpc/client": "^11.8.1",
"@trpc/react-query": "^11.8.1",
"@trpc/server": "^11.8.1",
"@types/react-syntax-highlighter": "^15.5.13",
"bcryptjs": "^3.0.3",
"better-auth": "^1.4.10",
"better-sqlite3": "^12.5.0",
"bun-plugin-tailwind": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.545.0",
"pg": "^8.16.3",
"posthog-node": "^5.0.0",
"react": "^19.2.3",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.3",
"react-router-dom": "^7.6.3",
"react-syntax-highlighter": "^16.1.0",
"resend": "^6.7.0",
"tailwind-merge": "^3.3.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@opentelemetry/core": "^1.29.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/bcryptjs": "^3.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "latest",
"@types/chrome": "^0.1.32",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.8",
"oxlint": "^1.38.0",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"terser": "^5.44.1",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^3.0.0"
}
}