-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.49 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.49 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
{
"name": "webcam-map",
"version": "0.1.0",
"description": "A map of webcams based on osm",
"author": "",
"license": "MIT",
"browserslist": [
"> 0.25%",
"not dead"
],
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@sentry/vite-plugin": "^5.2.0",
"@types/leaflet": "^1.9.21",
"@types/leaflet-rotatedmarker": "^0.2.6",
"@types/leaflet.markercluster": "^1.5.6",
"@types/lodash": "^4.17.24",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-nibble": "^9.1.1",
"eslint-plugin-compat": "^7.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-unicorn": "^64.0.0",
"npm-run-all": "^4.1.5",
"process": "^0.11.10",
"sass-embedded": "^1.99.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^8.0.8",
"vite-plugin-svgr": "^5.2.0"
},
"dependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.2",
"@popperjs/core": "^2.11.8",
"@sentry/react": "^10.48.0",
"axios": "^1.15.0",
"bootstrap": "^5.3.8",
"globals": "^17.5.0",
"i18n-iso-countries": "^7.14.0",
"leaflet": "^1.9.4",
"leaflet-rotatedmarker": "^0.2.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hooks-global-state": "2.1.0",
"react-leaflet": "^5.0.0",
"react-leaflet-cluster": "^4.1.3",
"react-router": "^7.14.0",
"react-router-dom": "^7.14.0",
"reactstrap": "^9.2.3",
"youtube-dl-exec": "^3.1.4"
},
"overrides": {
"react-leaflet-cluster": {
"react": "$react",
"react-dom": "$react-dom",
"react-leaflet": "$react-leaflet"
}
},
"scripts": {
"start": "npm run app",
"app": "vite",
"build": "vite build",
"lint": "npm-run-all -c -s tsc eslint",
"eslint": "eslint src/ utils/",
"tsc": "tsc --noEmit",
"collect": "ts-node -P tsconfig.update.json --files utils/collect.ts",
"lintData": "ts-node -P tsconfig.update.json utils/lint/",
"clean": "rimraf dist build node_modules/ && npm i"
}
}