-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.58 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 4.58 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "servicemap-ui",
"version": "2.16.0",
"private": true,
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22.13.1",
"pnpm": ">=11.9.0"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@formatjs/intl-pluralrules": "^1.5.9",
"@formatjs/intl-relativetimeformat": "^4.5.16",
"@mui/icons-material": "^6.1.4",
"@mui/material": "^6.1.4",
"@mui/styles": "^6.1.4",
"@mui/utils": "^6.1.4",
"@sentry/node": "^10.62.0",
"@sentry/react": "^10.62.0",
"@turf/area": "^6.5.0",
"@turf/boolean-equal": "^6.5.0",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/boolean-within": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/flip": "^6.5.0",
"@turf/point-on-feature": "^6.5.0",
"@uiw/react-watermark": "1.0.0",
"@vitejs/plugin-react": "^5.0.3",
"@vitest/coverage-istanbul": "^4.1.0",
"compression": "^1.8.1",
"core-js": "^3.25.1",
"d3": "^7.9.0",
"dotenv": "^16.6.1",
"esrun": "^3.2.30",
"express": "^4.21.2",
"express-sitemap": "^1.8.0",
"hds-design-tokens": "6.0.2",
"hds-react": "6.0.2",
"http-status-typed": "^2.0.1",
"intl": "^1.2.5",
"isomorphic-style-loader": "^5.4.0",
"leaflet": "1.9.4",
"leaflet.heightgraph": "^1.4.0",
"leaflet.markercluster": "^1.5.3",
"node-fetch": "^2.6.7",
"node-schedule": "^2.0.0",
"proj4leaflet": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-helmet-async": "^3.0.0",
"react-intl": "^7.1.14",
"react-leaflet": "^5.0.0",
"react-markdown": "^10.1.0",
"react-redux": "^9.3.0",
"react-router": "^6.30.4",
"react-router-dom": "^6.30.3",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"regenerator-runtime": "^0.13.7",
"remark-gfm": "^4.0.1",
"reselect": "^4.1.6",
"sitemap": "^6.4.0",
"urijs": "^1.19.11",
"vite": "^7.3.5",
"vitest": "^4.1.0",
"whatwg-fetch": "^3.5.0"
},
"scripts": {
"build": "rm -rf dist && pnpm build:client && pnpm build:server && pnpm update-runtime-env",
"build:test": "rm -rf dist && pnpm build:client --mode development && pnpm build:server --mode development",
"build:client": "vite build",
"build:server": "BUILD_TARGET=server vite build --ssr",
"build:client:clean": "rm -rf dist/src && pnpm build:client",
"build:server:clean": "rm -f dist/server.js dist/server.js.map && pnpm build:server",
"dev": "pnpm update-runtime-env && pnpm dev:client:watch & pnpm dev:server:watch & sleep 5 && nodemon dist --watch dist",
"dev:client:watch": "vite build --watch",
"dev:server:watch": "BUILD_TARGET=server vite build --ssr --watch",
"lint": "eslint src/ server/ && prettier src/ server/ --check",
"lint:fix": "eslint src/ server/ --fix && prettier src/ server/ --write",
"preview": "vite preview",
"start": "node dist",
"test": "NODE_ENV=test pnpm update-runtime-env && vitest --config vitest.config.js",
"test:coverage": "pnpm test --coverage",
"test:e2e:install": "playwright install",
"test:e2e": "playwright test",
"update-runtime-env": "esrun scripts/update-runtime-env.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie > 0",
"not op_mini all"
],
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@babel/core": "^7.29.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@emotion/server": "^11.10.0",
"@eslint/js": "^10.0.0",
"@playwright/test": "^1.60.0",
"@sentry/vite-plugin": "^4.6.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/parser": "^8.0.0",
"axe-html-reporter": "^2.2.11",
"eslint": "^10.0.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.0.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^27.0.0",
"nodemon": "^2.0.20",
"prettier": "^3.6.2",
"redux-mock-store": "^1.5.4",
"typescript": "^5.9.3",
"vite-plugin-commonjs": "^0.10.4",
"vite-plugin-node-polyfills": "^0.24.0"
}
}