-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.03 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": "open-dashboard",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"start": "node .output/server/index.mjs",
"serve": "vite preview",
"build:cf": "DEPLOY_TARGET=cloudflare VITE_SKIP_AUTH=1 vite build",
"preview:cf": "DEPLOY_TARGET=cloudflare VITE_SKIP_AUTH=1 vite preview",
"deploy:cf": "bun run build:cf && wrangler deploy",
"cf-typegen": "DEPLOY_TARGET=cloudflare wrangler types",
"check": "biome check",
"lint": "biome lint",
"format": "biome format --write",
"typecheck": "tsr generate && tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "bun run scripts/seed.ts",
"create-resource": "bun run scripts/create-resource.ts",
"sync-skills": "bun run scripts/sync-skills.ts",
"build-base": "bun run scripts/build-base.ts"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@phosphor-icons/react": "^2.1.10",
"@tanstack/react-form": "^1.33.0",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-router": "^1.141.2",
"@tanstack/react-router-ssr-query": "^1.141.2",
"@tanstack/react-start": "^1.141.3",
"@tanstack/react-table": "^8.21.3",
"better-auth": "^1.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.45.1",
"next-themes": "^0.4.6",
"pg": "^8.16.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"recharts": "^3.2.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.1.11",
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@cloudflare/vite-plugin": "^1.42.1",
"@faker-js/faker": "^10.0.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/nitro-v2-vite-plugin": "^1.141.0",
"@tanstack/react-devtools": "^0.8.4",
"@tanstack/react-router-devtools": "^1.141.2",
"@tanstack/router-cli": "1.141.2",
"@tanstack/router-plugin": "^1.141.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.3.0",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"jsdom": "^29.1.1",
"shadcn": "^4.11.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vite-plugin-devtools-json": "^1.0.0",
"vite-tsconfig-paths": "^6.0.1",
"vitest": "^4.0.15",
"wrangler": "^4.103.0"
},
"trustedDependencies": [
"@parcel/watcher"
]
}