-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "generic-map-with-pois",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "biome lint .",
"format": "biome format --write .",
"check:biome": "biome check --write .",
"check:tsc": "tsc --noEmit",
"check": "npm run check:biome && npm run check:tsc",
"preview": "vite preview",
"svgo": "npx --yes -- svgo -r ./src/assets"
},
"dependencies": {
"html2pdf.js": "^0.12.1",
"leaflet": "^1.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-leaflet-cluster": "^2.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/leaflet": "^1.9.3",
"@types/node": "^24.7.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.0.2",
"vite": "^6.3.5",
"vite-plugin-svgr": "^4.3.0"
}
}