-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.29 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": "globaltrace",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "npm run build && HOME=$PWD/.wrangler-home wrangler dev --local --assets dist",
"build": "vite build",
"deploy:private": "npm run build && npx wrangler deploy --config wrangler.private.jsonc",
"lint": "eslint src scripts tests *.config.ts eslint.config.js --max-warnings=0",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.worker.json",
"perf:budget": "node scripts/perf-budget.mjs",
"verify": "npm run lint && npm run typecheck && npm run test:coverage && npm run build && npm run perf:budget && npm run smoke",
"dev:frontend": "vite --host 127.0.0.1",
"smoke": "npm run smoke:browser && npm run smoke:worker",
"smoke:browser": "playwright test --config playwright.config.ts",
"smoke:worker": "playwright test --config playwright.worker.config.ts",
"smoke:live": "tsx scripts/live-smoke.ts"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.4",
"@radix-ui/react-slot": "^1.2.5",
"@radix-ui/react-switch": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.14",
"@radix-ui/react-tooltip": "^1.2.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hono": "^4.12.25",
"liquid-glass-react": "^1.1.1",
"lucide-react": "^1.18.0",
"maplibre-gl": "^5.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260613.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/geojson": "^7946.0.16",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"tailwindcss": "^4.3.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"wrangler": "^4.100.0"
},
"overrides": {
"esbuild": "0.28.1"
}
}