forked from theborderland/map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.5 KB
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
{
"name": "map",
"version": "1.1.0",
"description": "A borderland map interface in Javascript",
"main": "index.js",
"scripts": {
"build": "esbuild src/main.js --minify --format=iife --bundle --outfile=public/bundle.js",
"watch": "esbuild src/main.js --sourcemap --format=iife --bundle --outfile=public/bundle.js --watch",
"serve": "esbuild src/main.js --sourcemap --format=iife --bundle --outfile=public/bundle.js --servedir=public --serve=127.0.0.1:3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theborderland/map.git"
},
"keywords": [
"borderland",
"map"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/theborderland/map/issues"
},
"homepage": "https://github.com/theborderland/map#readme",
"dependencies": {
"@geoman-io/leaflet-geoman-free": "^2.14.2",
"@maphubs/tokml": "^0.6.1",
"@turf/turf": "^6.5.0",
"cheap-ruler": "^3.0.2",
"dompurify": "^3.0.2",
"exceljs": "^4.4.0",
"leaflet": "^1.9.0",
"leaflet-copy-coordinates-control": "^0.1.6",
"leaflet-search": "^3.0.9",
"leaflet.locatecontrol": "^0.76.1",
"leaflet.path.drag": "^0.0.6",
"leaflet.polylinemeasure": "^3.0.0",
"tabulator-tables": "^6.2.1"
},
"devDependencies": {
"@types/dompurify": "^3.0.2",
"@types/leaflet": "^1.9.1",
"esbuild": "^0.21.1",
"prettier": "^2.6.2"
}
}