forked from freifunk/meshviewer
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"name": "meshviewer",
"version": "13.0.0",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/freifunk/meshviewer.git"
},
"bugs": {
"url": "https://github.com/freifunk/meshviewer/issues"
},
"type": "module",
"devDependencies": {
"@types/node": "^25.0.3",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.4",
"sass": "^1.97.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-pwa": "^1.2.0"
},
"dependencies": {
"@maplibre/maplibre-gl-leaflet": "^0.1.3",
"@types/d3-collection": "^1.0.13",
"@types/d3-drag": "^3.0.7",
"@types/d3-ease": "^3.0.2",
"@types/d3-force": "^3.0.10",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-selection": "^3.0.11",
"@types/d3-timer": "^3.0.2",
"@types/d3-zoom": "^3.0.8",
"@types/leaflet": "^1.9.21",
"@types/node-polyglot": "^2.5.0",
"@types/rbush": "^4.0.0",
"d3-collection": "^1.0.7",
"d3-drag": "^3.0.0",
"d3-ease": "^3.0.1",
"d3-force": "^3.0.0",
"d3-interpolate": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-timer": "^3.0.1",
"d3-zoom": "^3.0.0",
"leaflet": "^1.9.4",
"moment": "^2.30.1",
"navigo": "^8.11.1",
"node-polyglot": "2.6.0",
"promise-polyfill": "^8.2.0",
"rbush": "^4.0.1",
"snabbdom": "^3.6.3"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "./node_modules/.bin/eslint .",
"lint:prettier": "./node_modules/.bin/prettier --check .",
"lint:fix": "npm run lint:fix:prettier && npm run lint:fix:eslint",
"lint:fix:eslint": "./node_modules/.bin/eslint --fix .",
"lint:fix:prettier": "./node_modules/.bin/prettier --log-level warn --write .",
"generate-pwa-assets": "pwa-assets-generator --preset minimal assets/logo.svg"
},
"browserslist": [
"> 1% in DE"
]
}