forked from emilhe/dash-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.16 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
{
"name": "dash_leaflet",
"version": "0.1.0",
"description": "Leaflet component for Dash",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublish": "npm run validate-init",
"build:js-dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:py": "dash-generate-components ./src/lib/components dash_leaflet",
"build:py-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py)",
"build:all": "npm run build:js && npm run build:js-dev && npm run build:py",
"build:all-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:all)"
},
"author": "Emil Haldrup Eriksen",
"contributors": [
"Martin Qvist",
"r-chris"
],
"license": "MIT",
"dependencies": {
"chroma-js": "^2.0.4",
"d3": "^5.9.2",
"geobuf": "^3.0.1",
"geotiff": "^1.0.0-beta.6",
"immutability-helper": "^3.1.1",
"jszip": "^3.5.0",
"leaflet": "^1.6.0",
"leaflet-polylinedecorator": "^1.6.0",
"leaflet.locatecontrol": "^0.71.1",
"leaflet.markercluster": "^1.4.1",
"lzma": "^2.3.2",
"pbf": "^3.2.1",
"proj4": "^2.5.0",
"prop-types": "^15.7.2",
"ramda": "^0.25.0",
"react-leaflet": "^2.6.3",
"react-leaflet-markercluster": "^2.0.0-rc3",
"regenerator-runtime": "^0.13.5",
"supercluster": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.1.0",
"copyfiles": "^2.0.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"npm": "^6.9.0",
"react": ">=0.14",
"react-docgen": "^2.20.1",
"react-dom": ">=0.14",
"style-loader": "^0.21.0",
"url-loader": "^2.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-serve": "^1.0.2"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
},
"browserslist": "> 0.25%, not dead"
}