-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.89 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.89 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
{
"name": "endangered-lang",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mapbox/mapbox-gl-geocoder": "^5.1.2",
"@math.gl/web-mercator": "^4.1.0",
"@mui/lab": "^5.0.0-alpha.176",
"@mui/material": "^5.16.7",
"@mui/styles": "^5.16.7",
"@sentry/react": "^8",
"@tanstack/react-query": "^5",
"@tanstack/react-query-devtools": "^5",
"@tanstack/react-table": "^8.21.3",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.5",
"@testing-library/user-event": "^7.1.2",
"@types/geojson": "^7946.0.7",
"@types/jest": "^24.0.0",
"@types/match-sorter": "^4.0.0",
"@types/node": "^14.0.13",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-map-gl": "^5.2.7",
"@types/react-window": "^1.8.2",
"@types/webfontloader": "^1.6.32",
"airtable": "^0.12",
"clsx": "^2",
"filefy": "^0.1.10",
"history": "^5",
"jest-canvas-mock": "^2.2.0",
"jspdf": "^2.1.0",
"jspdf-autotable": "^3.5.13",
"mapbox-gl": "^1.11.1",
"match-sorter": "^6",
"react": "^19",
"react-device-detect": "^1.17.0",
"react-dom": "^19",
"react-icons": "^5",
"react-map-gl": "^7",
"react-markdown": "^5.0.3",
"react-router-dom": "^6",
"react-share": "^5",
"react-transition-group": "^4.4.1",
"react-window": "^1.8.5",
"simple-statistics": "^7.3.2",
"typescript": "^5",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/mapbox__mapbox-gl-geocoder": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57",
"eslint-config-airbnb": "^19",
"eslint-config-airbnb-typescript": "^18",
"eslint-config-prettier": "^9",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"husky": "^9",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^15",
"patch-package": "^8.0.1",
"prettier": "^3",
"vite": "^6.0.7",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"scripts": {
"start": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet",
"prepare": "husky",
"postinstall": "patch-package"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*/**/*.{js,ts,tsx}": "eslint --quiet --cache --fix"
},
"resolutions": {
"@types/react": "^19",
"@types/react-dom": "^19"
}
}