forked from plotly/dash-core-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.78 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
99
100
101
102
{
"name": "dash-core-components",
"version": "1.8.1",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
"url": "git://github.com/plotly/dash-core-components.git"
},
"bugs": {
"url": "https://github.com/plotly/dash-core-components/issues"
},
"homepage": "https://github.com/plotly/dash-core-components",
"main": "dash_core_components/dash_core_components.min.js",
"scripts": {
"prepublishOnly": "rm -rf lib && babel src --out-dir lib --copy-files",
"start": "webpack-serve ./webpack.serve.config.js --open",
"lint": "eslint src tests",
"lint:py": "flake8 --ignore=E501,F401,F841,F811,W503 tests",
"test": "run-s -c lint lint:py format:test test-unit test:legacy test:intg test:pyimport",
"test:legacy": "pytest tests/test_integration*.py",
"test:intg": "pytest --nopercyfinalize --headless tests/integration",
"test:pyimport": "python -m unittest tests/test_dash_import.py",
"test-unit": "jest",
"format": "prettier --config .prettierrc --write src/**/*.js tests/unit/*.js",
"format:test": "prettier --config .prettierrc src/**/*.js tests/unit/*.js --list-different",
"uninstall-local": "pip uninstall dash-core-components -y",
"prebuild:js": "cp node_modules/plotly.js/dist/plotly.min.js dash_core_components_base/plotly.min.js",
"build:js": "webpack --mode production",
"build:py_and_r": "dash-generate-components ./src/components dash_core_components -p package-info.json && cp dash_core_components_base/** dash_core_components/ && dash-generate-components ./src/components dash_core_components -p package-info.json --r-prefix 'dcc'",
"build": "run-s build:js build:py_and_r",
"postbuild": "es-check es5 dash_core_components/*.js",
"build:watch": "watch 'npm run build' src"
},
"author": "Chris Parmer <[email protected]>",
"license": "MIT",
"dependencies": {
"color": "^3.1.0",
"fast-isnumeric": "^1.1.3",
"highlight.js": "^9.17.1",
"moment": "^2.20.1",
"plotly.js": "1.52.2",
"prop-types": "^15.6.0",
"ramda": "^0.26.1",
"rc-slider": "^9.1.0",
"react-addons-shallow-compare": "^15.6.0",
"react-dates": "^20.1.0",
"react-docgen": "^3.0.0",
"react-dropzone": "^4.1.2",
"react-markdown": "^4.0.6",
"react-resize-detector": "^4.2.1",
"react-select-fast-filter-options": "^0.2.3",
"react-virtualized-select": "^3.1.3",
"uniqid": "^5.0.3"
},
"devDependencies": {
"@babel/cli": "^7.4.0",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-react": "^7.0.0",
"@plotly/dash-component-plugins": "^1.1.0",
"@plotly/webpack-dash-dynamic-import": "^1.1.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"check-prop-types": "^1.1.2",
"component-playground": "^3.0.0",
"copyfiles": "^2.0.0",
"css-loader": "^1.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"es-check": "^5.0.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"exec-sh": "^0.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-jsx-parser": "^1.21.0",
"react-resize-detector": "^4.2.1",
"style-loader": "^0.23.1",
"styled-jsx": "^3.1.1",
"terser-webpack-plugin": "^2.3.0",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6",
"webpack-serve": "^2.0.3"
},
"files": [
"/dash_core_components/*{.js,.map}",
"/lib/**"
],
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}