-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.14 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
71
72
73
{
"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": {
"@types/leaflet": "^1.9.12",
"@types/leaflet-rotatedmarker": "^0.2.5",
"@types/leaflet.markercluster": "^1.5.4",
"@types/lodash": "^4.17.9",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-nibble": "^8.1.0",
"eslint-plugin-compat": "^5.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-unicorn": "^54.0.0",
"npm-run-all": "^4.1.5",
"process": "^0.11.10",
"sass-embedded": "^1.79.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-svgr": "^4.2.0"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@vitejs/plugin-react": "^4.3.2",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"i18n-iso-countries": "^7.12.0",
"leaflet": "^1.9.4",
"leaflet-rotatedmarker": "^0.2.0",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hooks-global-state": "2.1.0",
"react-leaflet": "^4.2.1",
"react-leaflet-cluster": "^2.1.0",
"react-router": "^6.26.2",
"react-router-dom": "^6.26.2",
"reactstrap": "^9.2.3",
"youtube-dl-exec": "^3.0.10"
},
"scripts": {
"start": "vite",
"build": "vite build",
"lint": "npm-run-all -c -s tsc eslint",
"eslint": "eslint --ext ts,tsx,js src/ utils/",
"tsc": "tsc --noEmit",
"collect": "ts-node -P tsconfig.update.json --files utils/collect.ts",
"lintData": "ts-node utils/lint/",
"clean": "rimraf dist build node_modules/ && npm i"
}
}