forked from tyrasd/overpass-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "overpass-turbo",
"description": "A web based data mining tool for OpenStreetMap using Overpass API",
"homepage": "http://overpass-turbo.eu/",
"repository": "git+https://github.com/tyrasd/overpass-turbo.git",
"license": "MIT",
"scripts": {
"test": "npm run test:style && npm run test:vitest",
"test:style": "prettier --check .",
"test:vitest": "vitest",
"fix:style": "prettier --write .",
"start": "vite",
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"@rollup/plugin-inject": "^4.0.4",
"@types/jquery": "^3.5.14",
"happy-dom": "^7.4.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"pegjs": "^0.10.0",
"prettier": "^2.1.2",
"request": "^2.67.0",
"rollup-plugin-pegjs": "^2.1.3",
"vite": "^3.1.7",
"vitest": "^0.24.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@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",
"html2canvas": "^1.4.1",
"jquery": "3.6.1",
"jquery-ui": "1.13.2",
"leaflet": "0.7.7",
"leaflet-polylineoffset": "^1.0.0",
"leaflet.locationfilter": "tyrasd/leaflet-locationfilter#1eed148a41f8e4487e2b4b202a32f28839cbff1a",
"lodash": ">=4.17.5",
"mapbbcode": "https://github.com/MapBBCode/mapbbcode/archive/v1.2.0.tar.gz",
"osm-auth": "^1.0.1",
"osmtogeojson": "^3.0.0-beta.5",
"polylabel": "^1.0.2",
"rgbcolor": "^1.0.1",
"stackblur": "^1.0.0",
"togpx": "tyrasd/togpx#4396a386fd179be6876f7443438909d524651eed",
"tokml": "^0.4.0"
},
"prettier": {
"bracketSpacing": false,
"trailingComma": "none"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}