-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.63 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
{
"name": "dash_express_components",
"version": "0.0.111",
"description": "Simple widgets to add plotly express style plotting to dash",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve --config ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"build:patch": "python _patch.py",
"prepublishOnly": "npm run validate-init",
"build:js": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --mode production",
"build:backends": "copyfiles -u1 dash_express_components_base/**/**.py dash_express_components_base/**.py dash_express_components && dash-generate-components ./src/lib/components dash_express_components -p package-info.json --r-prefix '' --jl-prefix '' --ignore \\.test\\. --ignore ^_",
"build:backends-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py_and_r)",
"build": "npm run build:js && npm run build:backends && npm run build:patch",
"build:activated": "npm run build:js && npm run build:backends-activated",
"doc": "jsdoc -c ./jsdoc.conf.json -a public",
"test": "pytest --cov=dash_express_components tests --cov-report term-missing"
},
"author": "Viktor Krückl <[email protected]>",
"license": "MIT",
"dependencies": {
"@nx-js/compiler-util": "^2.0.0",
"chroma-js": "^2.1.2",
"exceljs": "^4.3.0",
"plotly.js": "^1.58.4",
"plotly.js-dist": "^2.8.3",
"ramda": "^0.27.2",
"react-bootstrap": "^2.0.4",
"react-datetime-picker": "^3.4.3",
"react-list-editable": "^0.1.0",
"react-resize-detector": "^6.7.7",
"react-select": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@plotly/dash-component-plugins": "^1.2.0",
"@plotly/webpack-dash-dynamic-import": "^1.2.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-jsdoc-theme": "^3.3.2",
"copyfiles": "^2.1.1",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"jsdoc": "^3.6.10",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-docgen": "^4.1.1",
"react-dom": "^16.8.6",
"react-svg-loader": "^3.0.3",
"style-loader": "^0.23.1",
"styled-jsx": "^3.2.1",
"terser-webpack-plugin": "^2.3.0",
"webpack": "4.36.1",
"webpack-cli": "3.3.6",
"webpack-serve": "3.1.0"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}