forked from emilhe/dash-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.19 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dash_leaflet",
"repository": {
"type": "git",
"url": "git://github.com/thedirtyfew/dash-leaflet.git"
},
"version": "0.1.23",
"description": "Leaflet component for Dash",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"build:js-dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:py_and_r": "dash-generate-components ./src/lib/components dash_leaflet -p package-info.json --r-prefix ''",
"build:py_and_r-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py_and_r)",
"build": "npm run build:js && npm run build:py_and_r",
"build:py": "dash-generate-components ./src/lib/components dash_leaflet -p package-info.json",
"build_no_r": "npm run build:js && npm run build:py",
"build:activated": "npm run build:js && npm run build:py_and_r-activated"
},
"author": "Emil Eriksen <[email protected]>",
"contributors": [
"Martin Qvist",
"r-chris",
"Chrlryo",
"Hsuning"
],
"license": "MIT",
"dependencies": {
"@plotly/webpack-dash-dynamic-import": "^1.2.0",
"chroma-js": "^2.1.2",
"d3": "^5.9.2",
"dash-extensions": "0.0.1",
"electron": "^11.5.0",
"geobuf": "^3.0.1",
"geotiff": "^1.0.8",
"immutability-helper": "^3.1.1",
"jszip": "^3.7.1",
"leaflet": "^1.6.0",
"leaflet-draw": "^1.0.4",
"leaflet-easybutton": "^2.4.0",
"leaflet-gesture-handling": "^1.2.2",
"leaflet-measure": "^3.1.0",
"leaflet-polylinedecorator": "^1.6.0",
"leaflet.locatecontrol": "^0.71.1",
"leaflet.markercluster": "^1.5.3",
"leaflet.minichart": "^0.2.5",
"lzma": "^2.3.2",
"node-polyfill-webpack-plugin": "^1.1.4",
"pbf": "^3.2.1",
"proj4": "^2.7.5",
"prop-types": "^15.7.2",
"ramda": "^0.25.0",
"react-leaflet": "^2.6.3",
"react-leaflet-draw": "0.19.0",
"react-leaflet-fullscreen": "^1.0.1",
"react-leaflet-markercluster": "^2.0.0-rc3",
"react-loadable": "^5.5.0",
"regenerator-runtime": "^0.13.9",
"supercluster": "^7.1.4"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"copyfiles": "^2.4.1",
"css-loader": "^0.28.11",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"html-loader": "^1.3.1",
"npm": "^6.14.15",
"react": "^17.0.2",
"react-docgen": "^5.4.0",
"react-dom": "^17.0.2",
"sass-loader": "^10.2.0",
"style-loader": "^0.21.0",
"styled-jsx": "^3.2.1",
"svg-url-loader": "^7.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.49.0",
"webpack-cli": "4.7.2",
"webpack-serve": "4.0.0"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
},
"browserslist": "> 0.25%, not dead"
}