-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.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
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
{
"name": "infra-risk-vis",
"version": "0.2.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0 <23"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@loaders.gl/core": "^4.3.3",
"@loaders.gl/wkt": "^4.3.3",
"@math.gl/core": "^4.1.0",
"@mui/icons-material": "^6.4.7",
"@mui/lab": "^6.0.0-beta.30",
"@mui/material": "^6.4.7",
"@mui/x-tree-view": "^7.26.0",
"@nismod/irv-api-client": "^0.9.0",
"@nismod/irv-autopkg-client": "^0.2.7",
"@recoiljs/refine": "^0.1.1",
"@tanstack/react-query": "^5.68.0",
"@turf/bbox": "^7.2.0",
"@turf/bbox-polygon": "^7.2.0",
"@turf/buffer": "^7.2.0",
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-dsv": "^3.0.1",
"d3-ease": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"deck.gl": "^9.1.4",
"immer": "^10.1.1",
"json-stable-stringify": "^1.2.1",
"lodash": "^4.17.21",
"maplibre-gl": "^5.2.0",
"markdown-to-jsx": "^7.7.4",
"pretty-bytes": "^6.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-map-gl": "^8.0.1",
"react-resize-detector": "^12.0.2",
"react-router-dom": "^6.30.0",
"react-string-replace": "^1.1.1",
"react-vega": "^7.6.0",
"recoil": "^0.7.7",
"recoil-sync": "^0.2.0",
"usehooks-ts": "^3.1.1",
"vaul": "^1.1.2",
"vega": "^5.32.0",
"vega-lite": "^5.23.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@mdx-js/rollup": "^3.1.0",
"@types/d3-array": "^3.2.1",
"@types/d3-color": "^3.1.3",
"@types/d3-dsv": "^3.0.7",
"@types/d3-ease": "^3.0.2",
"@types/d3-format": "^3.0.4",
"@types/d3-scale": "^4.0.9",
"@types/d3-scale-chromatic": "^3.1.0",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.7",
"@types/geojson": "^7946.0.16",
"@types/lodash": "^4.17.16",
"@types/mdx": "^2.0.13",
"@types/node": "^22.13.9",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"npm-check-updates": "^17.1.15",
"prettier": "^3.5.3",
"rollup-plugin-visualizer": "^5.14.0",
"type-fest": "^4.36.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vite": "^6.2.0",
"vite-plugin-qrcode": "^0.2.4",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
},
"scripts": {
"update": "ncu -i --reject react,react-dom,@types/react,@types/react-dom",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test:type-check": "tsc --noEmit",
"format": "prettier --write .",
"prepare": "husky"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}