-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "arcgis-mp",
"private": true,
"version": "0.0.0",
"description": "Milepost map written with ArcGIS Maps API for JavaScript",
"type": "module",
"scripts": {
"prepare": "tsx tools/copy-wsdot-webstyles.ts",
"build": "vite build",
"watch": "vite build -- --watch",
"preview": "vite preview",
"build-and-preview": "npm run build && npm run preview -- --open",
"clean": "git clean -dfx --exclude \"node_modules/**\" --exclude \".mailmap\" --exclude \".env.local\"",
"dev": "vite",
"dev-browserstack": "vite --host",
"lint": "biome check .",
"publish": "npm run build && node tools/publish.mjs",
"test": "vitest run --bail 1",
"test:watch": "vitest",
"spell": "cspell ."
},
"dependencies": {
"@analytics/google-tag-manager": "^0.6.0",
"@arcgis/core": "^4.32.4",
"@esri/calcite-components": "^3.0.3",
"@fontsource/inconsolata": "^5.2.5",
"@fontsource/lato": "^5.2.5",
"@fontsource/overpass": "^5.2.5",
"@terraformer/arcgis": "^2.1.2",
"@types/geojson": "^7946.0.16",
"@wsdot/land-use-codes": "github:WSDOT-GIS/land-use",
"@wsdot/web-styles": "github:WSDOT-GIS/wsdot-web-styles#v1.0.1",
"analytics": "^0.8.16",
"browser-update": "^3.3.55",
"dms-conversion": "^3.1.3",
"wsdot-route-utils": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/arcgis-rest-api": "^10.4.8",
"@types/browser-update": "^3.3.3",
"@types/node": "^22.13.9",
"@types/terraformer__arcgis": "^2.0.5",
"@vitest/coverage-istanbul": "^3.0.7",
"@vitest/coverage-v8": "^3.0.7",
"browserslist-to-esbuild": "^2.1.1",
"cspell": "^8.17.5",
"jsdom": "^26.0.0",
"msw": "^2.7.3",
"optionator": "^0.9.4",
"svgo": "^3.3.2",
"svgson": "^5.3.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vitest": "^3.0.7"
},
"repository": {
"url": "https://github.com/WSDOT-GIS/wsdot-mp-map.git",
"type": "git"
},
"keywords": [
"arcgis",
"wsdot",
"milepost",
"map",
"gis",
"lrs",
"linear-referencing"
],
"author": "Jeff Jacobson",
"license": "Unlicense",
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b",
"pnpm": {
"ignoredBuiltDependencies": [
"msw"
],
"onlyBuiltDependencies": [
"esbuild"
]
}
}