-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.98 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.98 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
{
"name": "vite-ts-template",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite --mode development",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"validate:all": "npm run typecheck && npm run lint && npm run test -- --run && npm run test:browser && npm run test:e2e && npm run build",
"validate-imdf": "node scripts/validate-imdf.mjs",
"fetch:imdf:fixtures": "node scripts/fetch-ogc-imdf-fixtures.mjs",
"setup:hooks": "git config core.hooksPath .githooks",
"test": "node scripts/run-with-timeout.mjs --timeout=120000 -- vitest",
"test:browser": "node scripts/run-with-timeout.mjs --timeout=120000 -- vitest run src/App.browser-smoke.test.tsx",
"test:e2e": "node scripts/run-with-timeout.mjs --timeout=180000 -- playwright test",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.5.1",
"@tanstack/react-query": "^5.90.21",
"@turf/turf": "^7.3.4",
"@types/mapbox__mapbox-gl-draw": "^1.4.9",
"idb": "^8.0.3",
"jszip": "^3.10.1",
"lucide-react": "^0.575.0",
"lucide-static": "^0.575.0",
"maplibre-gl": "^5.19.0",
"proj4": "^2.20.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/coverage-v8": "^4.0.18",
"daisyui": "^5.5.19",
"fake-indexeddb": "^6.2.5",
"jsdom": "^28.1.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}