forked from freifunk/meshviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "meshviewer",
"version": "12.2.1",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/freifunk/meshviewer.git"
},
"bugs": {
"url": "https://github.com/freifunk/meshviewer/issues"
},
"devDependencies": {
"@vite-pwa/assets-generator": "^0.0.10",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "3.0.3",
"sass": "^1.69.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-pwa": "^0.16.5"
},
"dependencies": {
"d3-collection": "^1.0.7",
"d3-drag": "^3.0.0",
"d3-force": "^3.0.0",
"d3-interpolate": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"leaflet": "^1.7.1",
"moment": "^2.29.4",
"navigo": "^7.1.2",
"node-polyglot": "2.5.0",
"promise-polyfill": "^8.2.0",
"rbush": "^3.0.1",
"snabbdom": "^0.7.4"
},
"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"
]
}