-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "mapline",
"version": "0.25.0",
"description": "Create maps along a track in print quality.",
"keywords": [],
"homepage": "https://github.com/sgelb/mapline",
"author": "sgelb",
"license": "GPL-3.0-or-later",
"scripts": {
"serve": "parcel serve index.html",
"dist": "parcel build --no-content-hash --no-cache --no-source-maps --target main index.html",
"prebuild": "parcel build --no-content-hash --no-cache --no-source-maps --target prebuild index.html"
},
"alias": {
"bootstrap-modal": "/node_modules/bootstrap/js/dist/modal.js",
"bootstrap-collapse": "/node_modules/bootstrap/js/dist/collapse.js"
},
"main": "dist/index.html",
"prebuild": "prebuild/index.html",
"targets": {
"main": {
"distDir": "dist",
"publicUrl": "./"
},
"prebuild": {
"distDir": "prebuild",
"publicUrl": "./"
}
},
"dependencies": {
"@derhuerst/query-overpass": "^2.0.0",
"@mapbox/geojson-normalize": "^0.0.1",
"@mapbox/mapbox-gl-language": "^0.10.0",
"@mapbox/togeojson": "^0.16.0",
"@popperjs/core": "^2.5.4",
"bootstrap": "^5.0.0-beta2",
"cheap-ruler": "^3.0.1",
"jspdf": "^2.3.0",
"mapbox-gl": "1.13.0"
},
"devDependencies": {
"parcel": "^2.0.0-beta.1"
}
}