-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 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
{
"name": "librarymap",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"predeploy": "vite build",
"deploy": "gh-pages -d build",
"sitemap": "node ./src/sitemap.js",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": [
"react-app"
],
"settings": {
"react": {
"version": "detect"
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@vitejs/plugin-react": "^4.7.0",
"gh-pages": "^6.3.0",
"sitemap": "^8.0.2",
"standard": "^17.1.2",
"vite": "^6.4.1"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.9",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"@mui/x-data-grid": "^8.21.0",
"@turf/turf": "^7.3.1",
"axios": "^1.13.2",
"maplibre-gl": "^5.14.0",
"markdown-to-jsx": "^7.7.17",
"moment": "^2.30.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-map-gl": "^8.1.0",
"react-router-dom": "^7.10.1",
"rrule": "^2.8.1"
}
}