-
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.61 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.61 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": "hackweek",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vp dev",
"start": "vp dev",
"typecheck": "tsc -b",
"format:check": "vp fmt --check .",
"lint": "vp lint src/app src/worker scripts test vite.config.ts vitest.config.ts vitest.app.config.ts vitest.migration.config.ts --deny-warnings",
"test": "node scripts/run-worker-tests.mjs && vp test run --config vitest.app.config.ts && vp test run --config vitest.migration.config.ts",
"test:worker": "node scripts/run-worker-tests.mjs",
"test:app": "vp test run --config vitest.app.config.ts",
"test:migration": "vp test run --config vitest.migration.config.ts",
"verify": "npm run cf-typegen && npm run typecheck && npm run format:check && npm run lint && npm test && npm run build && npm run deploy:dry-run",
"deploy:dry-run": "wrangler deploy --dry-run --config wrangler.production.json --outdir .wrangler/deploy-dry-run",
"build": "vp build",
"preview": "vp preview",
"cf-typegen": "wrangler types worker-configuration.d.ts --config wrangler.production.json",
"db:migrate:local": "wrangler d1 migrations apply hackweek-db --local",
"dev:video": "npm run db:migrate:local && vp dev",
"video:processor:build": "docker build --file Dockerfile.video-processor --tag hackweek-video-processor:local .",
"migrate:validate": "tsx scripts/migrate/cli.ts validate",
"migrate:dry-run": "tsx scripts/migrate/cli.ts dry-run",
"migrate:local": "tsx scripts/migrate/cli.ts import --target local",
"migrate:cloudflare": "tsx scripts/migrate/cli.ts import --target cloudflare",
"migrate:reconcile": "tsx scripts/migrate/cli.ts reconcile"
},
"dependencies": {
"@cloudflare/containers": "0.3.7",
"@fontsource/rubik": "^5.3.0",
"@tanstack/react-query": "^5.101.4",
"hono": "^4.12.34",
"jose": "^6.2.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"wouter": "^3.10.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.50.0",
"@cloudflare/vitest-pool-workers": "^0.20.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.5",
"jsdom": "^26.1.0",
"tsx": "^4.23.5",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vite-plus": "^0.2.7",
"vitest": "^4.1.10",
"wrangler": "^4.118.0"
},
"engines": {
"node": ">=24.11.0"
},
"volta": {
"node": "24.19.0"
}
}