forked from tyrasd/overpass-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.33 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": "overpass-turbo",
"version": "2.1.0",
"description": "A web based data mining tool for OpenHistoricalMap using Overpass API",
"homepage": "https://overpass-turbo.openhistoricalmap.org/",
"repository": "git+https://github.com/OpenHistoricalMap/overpass-turbo.git",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky",
"test": "yarn run test:eslint && yarn run test:style && yarn run test:vitest",
"test:eslint": "eslint .",
"test:style": "prettier --check .",
"test:vitest": "vitest",
"fix:style": "prettier --write .",
"start": "vite",
"dev": "vite --host=127.0.0.1",
"build": "vite build"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.3",
"@types/colormap": "^2",
"@types/jquery": "^3.5.16",
"@types/jqueryui": "^1.12.22",
"@types/leaflet": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"happy-dom": "^14.12.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"peggy": "^3.0.2",
"prettier": "^3.3.2",
"request": "^2.67.0",
"typescript": "^5.0.4",
"vite": "^5.2.14",
"vite-plugin-favicons-inject": "^2.2.0",
"vitest": "^1.6.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@maplibre/maplibre-gl-leaflet": "^0.0.20",
"@openstreetmap/id-tagging-schema": "^3.5.1",
"bulma": "^0.9.4",
"canvg": "4.0.1",
"codemirror": "https://github.com/codemirror/CodeMirror/archive/v2.38.tar.gz",
"colorbrewer": "^1.5.7",
"colormap": "^2.3.2",
"html2canvas": "^1.4.1",
"jquery": "3.7.1",
"jquery-ui": "1.13.2",
"jquery-ui-dist": "1.13.2",
"leaflet": "^1.9.4",
"leaflet-polylineoffset": "^1.1.1",
"leaflet.locationfilter": "tmgreensolutions/leaflet-locationfilter#ba59b65af08ebb9fcd5ca8a0a2e5fec971e5e48d",
"lodash": ">=4.17.5",
"maplibre-gl": "~3.3.1",
"osm-auth": "^2.2.0",
"osmtogeojson": "^3.0.0-beta.5",
"rgbcolor": "^1.0.1",
"stackblur": "^1.0.0",
"tag2link": "JOSM/tag2link.git#master",
"togpx": "tyrasd/togpx#4396a386fd179be6876f7443438909d524651eed",
"tokml": "^0.4.0"
},
"prettier": {
"bracketSpacing": false,
"trailingComma": "none"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}