-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.49 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
{
"name": "progress",
"private": true,
"type": "module",
"bin": {
"progress": "bin/progress.ts"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "tsc -b",
"test": "bun test src",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"db:migrate": "wrangler d1 migrations apply progress-db --local",
"db:seed": "wrangler d1 execute progress-db --local --file=./scripts/seed.sql",
"db:seed:scale": "bun scripts/seed-scale.ts",
"mcp": "bun src/mcp/server.ts",
"monitors:sync": "bun --env-file=.env scripts/monitors.ts",
"deploy": "bun run build && wrangler deploy"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sentry/cloudflare": "^10.60.0",
"@tanstack/react-query": "^5.101.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.26",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"wouter": "^3.10.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.42.1",
"@cloudflare/workers-types": "^4.20260621.1",
"@playwright/test": "^1.61.0",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^25.9.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"drizzle-kit": "^0.31.10",
"tailwindcss": "^4.3.1",
"typescript": "^5.9.3",
"vite": "^6.4.3",
"wrangler": "^4.103.0"
}
}