-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.92 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
{
"name": "dash_vega_components",
"version": "0.12.0dev",
"description": "Dash Vega Components",
"repository": {
"type": "git",
"url": "git://github.com/binste/dash-vega-components.git"
},
"bugs": {
"url": "https://github.com/binste/dash-vega-components/issues"
},
"homepage": "https://github.com/binste/dash-vega-components",
"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:backends": "dash-generate-components ./src/lib/components dash_vega_components -p package-info.json --ignore \\.test\\.",
"build": "npm run build:js && npm run build:backends"
},
"author": "Stefan Binder <[email protected]>",
"license": "BSD",
"dependencies": {
"d3": "^7.8.5",
"lodash.debounce": "^4.0.8",
"ramda": "^0.26.1",
"uuid": "^9.0.1",
"vega": "^5.30.0",
"vega-embed": "^6.26.0",
"vega-lite": "^5.20.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@plotly/dash-component-plugins": "^1.2.3",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"copyfiles": "^2.4.1",
"css-loader": "^6.8.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.29.0",
"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.3",
"styled-jsx": "^3.4.7",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}