forked from plotly/dash-core-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4.44 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
103
104
105
106
107
108
109
110
111
{
"name": "dash-core-components",
"version": "1.12.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": {
"private::format.black": "black --exclude dash_core_components .",
"private::format.eslint": "eslint src tests --fix",
"private::format.prettier": "prettier --config .prettierrc --write src/**/*.js tests/unit/*.js",
"private::lint.black": "if [ \"$PYTHON_VERSION\" != \"py27\" ]; then black --check --exclude dash_core_components .; fi",
"private::lint.eslint": "eslint src tests",
"private::lint.flake8": "flake8 --exclude=dash_core_components,node_modules,venv",
"private::lint.prettier": "prettier --config .prettierrc src/**/*.js tests/unit/*.js --list-different",
"prepublishOnly": "rm -rf lib && babel src --out-dir lib --copy-files",
"start": "webpack-serve ./webpack.serve.config.js --open",
"test": "run-s -c lint 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",
"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:backends": "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' --r-suggests 'dash,dashHtmlComponents,jsonlite,plotly' --jl-prefix 'dcc'",
"build": "run-s prepublishOnly build:js build:backends",
"postbuild": "es-check es5 dash_core_components/*.js",
"build:watch": "watch 'npm run build' src",
"format": "run-s private::format.*",
"lint": "run-s private::lint.*"
},
"author": "Chris Parmer <[email protected]>",
"maintainer": "Ryan Patrick Kyle <[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.55.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-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.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",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.2",
"react": "16.13.0",
"react-dom": "16.13.0",
"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"
}
}