-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "webmap-dev",
"version": "0.31.4-beta",
"type": "module",
"scripts": {
"test": "vitest run",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"size": "size-limit",
"og": "node scripts/generate-og-image.mjs",
"icons": "node scripts/generate-maskable-icons.mjs"
},
"dependencies": {
"esri-leaflet": "^3.0.12",
"esri-leaflet-geocoder": "^3.1.4",
"leaflet": "^1.9.4"
},
"devDependencies": {
"@size-limit/file": "^12.1.0",
"@types/leaflet": "^1.9.14",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"jsdom": "^29.0.1",
"sharp": "^0.34.5",
"size-limit": "^12.1.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.0.0",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^2.1.9",
"workbox-core": "^7.4.0",
"workbox-expiration": "^7.4.0",
"workbox-strategies": "^7.4.0"
},
"size-limit": [
{
"path": "dist/assets/index-*.js",
"limit": "100 kB",
"gzip": true
}
]
}