-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "viewer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --write --ignore-unknown src/*",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@maplibre/maplibre-gl-geocoder": "1.5.0",
"@sentry/react": "^7.118.0",
"@sentry/vite-plugin": "^2.22.6",
"@tanstack/react-query": "^5.51.9",
"@tanstack/react-router": "^0.0.1-beta.285",
"@tanstack/react-store": "^0.5.5",
"@tanstack/store": "^0.5.5",
"@watergis/legend-symbol": "^0.2.3",
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"bulma": "^0.9.4",
"events": "^3.3.0",
"html-react-parser": "^5.1.11",
"lodash": "^4.17.21",
"maplibre-gl": "^3.6.2",
"plausible-tracker": "^0.3.9",
"pmtiles": "^2.11.0",
"react": "^18.3.1",
"react-bulma-components": "^4.1.0",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-hot-toast": "^2.4.1",
"react-responsive": "^9.0.2",
"react-virtualized-auto-sizer": "^1.0.24",
"react-vtree": "^3.0.0-beta.3",
"rollup": "^4.18.1",
"use-resize-observer": "^9.1.0"
},
"devDependencies": {
"@types/events": "^3.0.3",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.8",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "3.3.3",
"sass": "^1.77.8",
"vite": "^5.3.4"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"!(*.css|*.js|*.jsx)": [
"prettier --write --ignore-unknown"
]
}
}