-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.24 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.24 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
{
"name": "osmcha-frontend",
"version": "1.3.1",
"type": "module",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/osmcha/osmcha-frontend.git"
},
"bugs": {
"url": "https://github.com/osmcha/osmcha-frontend/issues"
},
"scripts": {
"precommit": "npm run check",
"typecheck": "tsc",
"build-env": "dotenv -c -- jq -n 'env | with_entries(select(.key | startswith(\"OSMCHA_\")))' > public/env.json",
"start": "npm run build-env && vite",
"dev": "npm run start",
"lint": "biome lint",
"format": "biome format --write",
"check": "npm run typecheck && biome check",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"build": "npm run build-env && vite build",
"analyze": "ANALYZE=true npm run build",
"preview": "vite preview"
},
"dependencies": {
"@osmcha/maplibre-adiff-viewer": "^1.3.1",
"@osmcha/osm-adiff-parser": "^3.0.0",
"@tanstack/react-query": "^5.90.17",
"@tanstack/react-query-devtools": "^5.91.2",
"@turf/area": "^7.1.0",
"@turf/bbox": "^7.1.0",
"@turf/bbox-polygon": "^7.2.0",
"@turf/simplify": "^7.1.0",
"@turf/truncate": "^7.1.0",
"date-fns": "^2.22.1",
"deep-equal": "^2.2.3",
"diff": "^8.0.3",
"linkify-react": "^4.3.2",
"linkifyjs": "^4.3.2",
"lodash.debounce": "^4.0.8",
"maplibre-gl": "^5.1.0",
"mousetrap": "^1.6.5",
"react": "^18.3.1",
"react-datepicker": "^4.1.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router": "^7.12.0",
"react-select": "^5.10.1",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tag2link": "^2025.5.21",
"terra-draw": "^1.1.0",
"terra-draw-maplibre-gl-adapter": "^1.0.1",
"zustand": "^5.0.10"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^5.1.2",
"dotenv-cli": "^11.0.0",
"jsdom": "^27.4.0",
"mockdate": "^3.0.5",
"react-test-renderer": "^18.3.1",
"rollup-plugin-visualizer": "^6.0.5",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"browserslist": [
">0.2%",
"not ie 11",
"not op_mini all"
]
}