-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.07 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.07 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
{
"name": "coder",
"private": true,
"type": "module",
"scripts": {
"dev": "bun vite --port 3000",
"build": "vite build",
"preview": "vite preview",
"lint": "biome check",
"format": "biome format --write",
"auth-gen": "bunx @better-auth/cli generate --config ./src/lib/auth.ts --output ./src/lib/schema/auth-schema.ts --y",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"studio": "drizzle-kit studio",
"flow": "workflow inspect runs --web --noBrowser -b postgres"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.8",
"@base-ui/react": "^1.0.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@orpc/server": "^1.13.2",
"@orpc/tanstack-query": "^1.13.2",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@react-symbols/icons": "^1.3.0",
"@replit/codemirror-indentation-markers": "^6.5.3",
"@replit/codemirror-minimap": "^0.5.2",
"@t3-oss/env-core": "^0.13.10",
"@tabler/icons-react": "^3.36.1",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.7.11",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-router": "^1.147.3",
"@tanstack/react-router-devtools": "^1.149.0",
"@tanstack/router-plugin": "^1.149.0",
"@workflow/world-postgres": "^4.1.0-beta.27",
"ai": "^6.0.28",
"allotment": "^1.20.5",
"better-auth": "^1.4.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"codemirror": "^6.0.2",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.562.0",
"next-themes": "^0.4.6",
"nitro": "latest",
"octokit": "^5.0.5",
"postgres": "^3.4.8",
"radix-ui": "^1.4.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0",
"shadcn": "^3.6.3",
"shiki": "^3.21.0",
"sonner": "^2.0.7",
"streamdown": "^1.6.11",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"unique-names-generator": "^4.7.1",
"use-stick-to-bottom": "^1.1.1",
"vite-tsconfig-paths": "^5.1.4",
"workflow": "4.0.1-beta.44"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@tanstack/devtools-vite": "^0.3.12",
"@types/node": "^22.19.5",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.8",
"typescript": "^5.9.3",
"vite": "npm:rolldown-vite@7.2.5",
"vite-plugin-compression": "^0.5.1",
"web-vitals": "^5.1.0"
},
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
}
}