-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
69 lines (69 loc) · 2.15 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
{
"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",
"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",
"build": "vite build"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.3",
"@types/colormap": "^2",
"@types/jquery": "^3.5.16",
"@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": "^6.0.5",
"vite-plugin-favicons-inject": "^2.2.0",
"vitest": "^3.0.0-beta.3"
},
"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",
"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",
"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"
}
}