-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.11 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.11 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
{
"name": "cloudshell",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "alchemy dev",
"deploy": "alchemy deploy --stage runner",
"destroy": "alchemy destroy --stage runner",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"typecheck": "bun run check",
"db:better-auth": "bunx @better-auth/cli generate",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:local": "wrangler d1 migrations apply cloudshell-db --local",
"db:remote": "wrangler d1 migrations apply cloudshell-db --remote",
"test": "vitest run && bun test shared/",
"test:watch": "vitest"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "0.13.3",
"@cloudflare/workers-types": "4.20260317.1",
"@fontsource-variable/inter": "^5.2.8",
"@internationalized/date": "^3.12.0",
"@sveltejs/adapter-cloudflare": "7.2.8",
"@sveltejs/kit": "2.55.0",
"@sveltejs/vite-plugin-svelte": "7.0.0",
"@tailwindcss/vite": "4.2.2",
"@types/node": "25.5.0",
"bits-ui": "^2.16.3",
"clsx": "^2.1.1",
"drizzle-kit": "0.31.10",
"mode-watcher": "^1.1.0",
"paneforge": "^1.0.2",
"svelte": "5.54.0",
"svelte-check": "^4.3.3",
"svelte-sonner": "^1.1.0",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "4.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "8.0.2",
"vitest": "4.1.0",
"wrangler": "4.76.0"
},
"dependencies": {
"@cloudflare/containers": "0.1.1",
"@lucide/svelte": "^0.577.0",
"@xterm/addon-fit": "0.11.0",
"@xterm/xterm": "6.0.0",
"alchemy": "^0.77.5",
"better-auth": "1.5.5",
"drizzle-orm": "0.45.1",
"effect": "3.21.0",
"hono": "4.12.8",
"zod": "^4.3.6"
},
"type": "module",
"patchedDependencies": {
"alchemy@0.77.5": "patches/alchemy@0.77.5.patch"
}
}