-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.24 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.24 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
{
"name": "madcss",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS='--import ./instrument.server.mjs' vp dev --host",
"build": "vp build && cp instrument.server.mjs dist/server",
"test": "vp test run",
"format": "vp fmt",
"lint": "vp lint",
"check": "vp check",
"deploy": "wrangler deploy -c dist/server/wrangler.json",
"preview": "npm run build && vp preview",
"cf-typegen": "wrangler types",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply mad-css-db --local",
"db:migrate:prod": "wrangler d1 migrations apply mad-css-db --remote",
"db:migrate:staging": "wrangler d1 migrations apply mad-css-db-staging --remote",
"db:studio": "drizzle-kit studio",
"db:setup": "npm run db:generate && npm run db:migrate:local",
"prepare": "vp config"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.23.1",
"@sentry/cloudflare": "^10.39.0",
"@sentry/tanstackstart-react": "^10.38.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.9.5",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-router": "^1.159.5",
"@tanstack/react-router-devtools": "^1.159.5",
"@tanstack/react-router-ssr-query": "^1.159.5",
"@tanstack/react-start": "^1.159.5",
"@tanstack/router-plugin": "^1.159.5",
"@xyflow/react": "^12.10.0",
"better-auth": "^1.4.18",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.563.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.1.18",
"workers-og": "^0.0.27",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260316.1",
"@tanstack/devtools-vite": "^0.5.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.2.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"better-sqlite3": "^12.6.2",
"drizzle-kit": "^0.31.9",
"jsdom": "^28.0.0",
"typescript": "^5.9.3",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:",
"web-vitals": "^5.1.0",
"wrangler": "^4.63.0"
},
"packageManager": "pnpm@10.32.1"
}