-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
67
68
69
{
"name": "geofiddle",
"version": "2.0.0",
"author": "Rui Pinge",
"homepage": "https://geofiddle.com",
"repository": {
"type": "git",
"url": "git@github.com:ruipinge/geofiddle.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx",
"lint:fix": "eslint src --ext ts,tsx --fix",
"typecheck": "tsc --noEmit",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test": "npm run test:unit",
"clean": "rm -rf node_modules coverage dist .vite"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@mapbox/togeojson": "^0.16.2",
"@sentry/react": "^10.37.0",
"@turf/turf": "^7.1.0",
"csv-parse": "^5.6.0",
"lucide-react": "^0.468.0",
"maplibre-gl": "^4.7.1",
"proj4": "^2.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-map-gl": "^7.1.8",
"shpjs": "^6.1.0",
"wellknown": "^0.5.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/geojson": "^7946.0.15",
"@types/google.maps": "^3.58.1",
"@types/node": "^22.10.2",
"@types/proj4": "^2.5.5",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.9",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"png-to-ico": "^2.1.8",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.6",
"vitest": "^2.1.8"
}
}