-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
63 lines (63 loc) · 2.04 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
{
"name": "dash_deck",
"version": "0.0.2",
"description": "A Dash Component wrapping deck.gl",
"repository": {
"type": "git",
"url": "git://github.com/plotly/dash-deck.git"
},
"bugs": {
"url": "https://github.com/plotly/dash-deck/issues"
},
"homepage": "https://github.com/plotly/dash-deck",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve --config ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"build:js": "webpack --mode production",
"build:py_and_r": "dash-generate-components ./src/lib/components dash_deck -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:activated": "npm run build:js && npm run build:py_and_r-activated"
},
"author": "Xing Han Lu <xinghan@plot.ly>",
"license": "MIT",
"dependencies": {
"@deck.gl/aggregation-layers": "^8.9.34",
"@deck.gl/geo-layers": "^8.9.34",
"@deck.gl/layers": "^8.9.34",
"@deck.gl/extensions": "^8.9.34",
"@loaders.gl/core": "^3.1.8",
"@loaders.gl/csv": "^3.1.8",
"deck.gl": "^8.9.34",
"react-map-gl": "^7.1.7",
"mapbox-gl": "^2.15.0",
"maplibre-gl": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"copyfiles": "^2.4.1",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-docgen": "^5.4.3",
"react-dom": "^16.14.0",
"style-loader": "^3.3.4",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}