|
1 | 1 | {
|
2 |
| - "name": "dash-core-components", |
3 |
| - "version": "2.12.0", |
4 |
| - "description": "Core component suite for Dash", |
5 |
| - "repository": { |
6 |
| - "type": "git", |
7 |
| - "url": "git://github.com/plotly/dash.git" |
8 |
| - }, |
9 |
| - "bugs": { |
10 |
| - "url": "https://github.com/plotly/dash/issues" |
11 |
| - }, |
12 |
| - "homepage": "https://github.com/plotly/dash", |
13 |
| - "main": "dash_core_components/dash_core_components.js", |
14 |
| - "scripts": { |
15 |
| - "private::format.black": "black dash_core_components_base/ tests/ setup.py", |
16 |
| - "private::format.eslint": "eslint src --fix", |
17 |
| - "private::format.prettier": "prettier --config .prettierrc --write src/**/*.js", |
18 |
| - "private::lint.black": "node -e \"if ((process.env.PYVERSION || 'python39') !== 'python36'){process.exit(1)} \" || black --check dash_core_components_base/ tests/ setup.py", |
19 |
| - "private::lint.eslint": "eslint src", |
20 |
| - "private::lint.flake8": "flake8 --exclude=dash_core_components,node_modules,venv", |
21 |
| - "private::lint.prettier": "prettier --config .prettierrc src/**/*.js --list-different", |
22 |
| - "prepublishOnly": "rm -rf lib && babel src --out-dir lib --copy-files --config-file ./.lib.babelrc && rm -rf lib/jl/ lib/*.jl", |
23 |
| - "test": "run-s -c lint test:intg test:pyimport", |
24 |
| - "test:intg": "pytest --nopercyfinalize --headless tests/integration ", |
25 |
| - "test:pyimport": "python -m unittest tests/test_dash_import.py", |
26 |
| - "build:js": "webpack --mode production", |
27 |
| - "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 -k RangeSlider,Slider,Dropdown,RadioItems,Checklist,DatePickerSingle,DatePickerRange,Input,Link --r-prefix 'dcc' --r-suggests 'dash,dashHtmlComponents,jsonlite,plotly' --jl-prefix 'dcc' && black dash_core_components", |
28 |
| - "build": "run-s prepublishOnly build:js build:backends", |
29 |
| - "postbuild": "es-check es2015 dash_core_components/*.js", |
30 |
| - "build:watch": "watch 'npm run build' src", |
31 |
| - "format": "run-s private::format.*", |
32 |
| - "lint": "run-s private::lint.*" |
33 |
| - }, |
34 |
| - "author": "Chris Parmer <chris@plotly.com>", |
35 |
| - "maintainer": "Alex Johnson <alex@plotly.com>", |
36 |
| - "license": "MIT", |
37 |
| - "dependencies": { |
38 |
| - "@fortawesome/fontawesome-svg-core": "1.2.36", |
39 |
| - "@fortawesome/free-regular-svg-icons": "^5.15.4", |
40 |
| - "@fortawesome/free-solid-svg-icons": "^5.15.4", |
41 |
| - "@fortawesome/react-fontawesome": "^0.1.17", |
42 |
| - "base64-js": "^1.5.1", |
43 |
| - "color": "^4.2.3", |
44 |
| - "d3-format": "^1.4.5", |
45 |
| - "fast-isnumeric": "^1.1.4", |
46 |
| - "file-saver": "^2.0.5", |
47 |
| - "highlight.js": "^11.8.0", |
48 |
| - "mathjax": "^3.2.2", |
49 |
| - "moment": "^2.29.4", |
50 |
| - "node-polyfill-webpack-plugin": "^2.0.1", |
51 |
| - "prop-types": "^15.8.1", |
52 |
| - "ramda": "^0.29.0", |
53 |
| - "rc-slider": "^9.7.5", |
54 |
| - "react-addons-shallow-compare": "^15.6.3", |
55 |
| - "react-dates": "^21.8.0", |
56 |
| - "react-docgen": "^5.4.3", |
57 |
| - "react-dropzone": "^4.1.2", |
58 |
| - "react-fast-compare": "^3.2.2", |
59 |
| - "react-markdown": "^4.3.1", |
60 |
| - "react-resize-detector": "^6.7.6", |
61 |
| - "react-select-fast-filter-options": "^0.2.3", |
62 |
| - "react-virtualized-select": "^3.1.3", |
63 |
| - "remark-math": "^3.0.1", |
64 |
| - "uniqid": "^5.4.0" |
65 |
| - }, |
66 |
| - "devDependencies": { |
67 |
| - "@babel/cli": "^7.22.10", |
68 |
| - "@babel/core": "^7.22.10", |
69 |
| - "@babel/plugin-syntax-dynamic-import": "^7.8.3", |
70 |
| - "@babel/preset-env": "^7.22.10", |
71 |
| - "@babel/preset-react": "^7.22.5", |
72 |
| - "@plotly/dash-component-plugins": "^1.2.3", |
73 |
| - "@plotly/webpack-dash-dynamic-import": "^1.3.0", |
74 |
| - "babel-loader": "^9.1.3", |
75 |
| - "component-playground": "^3.2.1", |
76 |
| - "copyfiles": "^2.4.1", |
77 |
| - "css-loader": "^6.8.1", |
78 |
| - "es-check": "^7.1.1", |
79 |
| - "eslint": "^8.41.0", |
80 |
| - "eslint-config-prettier": "^8.8.0", |
81 |
| - "eslint-plugin-import": "^2.27.5", |
82 |
| - "eslint-plugin-react": "^7.32.2", |
83 |
| - "identity-obj-proxy": "^3.0.0", |
84 |
| - "npm-run-all": "^4.1.5", |
85 |
| - "prettier": "^2.8.8", |
86 |
| - "react": "^16.14.0", |
87 |
| - "react-dom": "^16.14.0", |
88 |
| - "react-jsx-parser": "1.21.0", |
89 |
| - "style-loader": "^3.3.3", |
90 |
| - "styled-jsx": "^3.4.4", |
91 |
| - "webpack": "^5.88.2", |
92 |
| - "webpack-cli": "^5.1.4" |
93 |
| - }, |
94 |
| - "files": [ |
95 |
| - "/dash_core_components/*{.js,.map}", |
96 |
| - "/lib/" |
97 |
| - ], |
98 |
| - "peerDependencies": { |
99 |
| - "react": ">=16", |
100 |
| - "react-dom": ">=16" |
101 |
| - }, |
102 |
| - "browserslist": [ |
103 |
| - "last 8 years and not dead" |
104 |
| - ] |
| 2 | + "name": "autofeather-dash-core-components", |
| 3 | + "version": "2.12.0", |
| 4 | + "description": "Core component suite for Dash", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "git://github.com/plotly/dash.git" |
| 8 | + }, |
| 9 | + "bugs": { |
| 10 | + "url": "https://github.com/plotly/dash/issues" |
| 11 | + }, |
| 12 | + "homepage": "https://github.com/plotly/dash", |
| 13 | + "main": "dash_core_components/dash_core_components.js", |
| 14 | + "scripts": { |
| 15 | + "private::format.black": "black dash_core_components_base/ tests/ setup.py", |
| 16 | + "private::format.eslint": "eslint src --fix", |
| 17 | + "private::format.prettier": "prettier --config .prettierrc --write src/**/*.js", |
| 18 | + "private::lint.black": "node -e \"if ((process.env.PYVERSION || 'python39') !== 'python36'){process.exit(1)} \" || black --check dash_core_components_base/ tests/ setup.py", |
| 19 | + "private::lint.eslint": "eslint src", |
| 20 | + "private::lint.flake8": "flake8 --exclude=dash_core_components,node_modules,venv", |
| 21 | + "private::lint.prettier": "prettier --config .prettierrc src/**/*.js --list-different", |
| 22 | + "prepublishOnly": "rm -rf lib && babel src --out-dir lib --copy-files --config-file ./.lib.babelrc && rm -rf lib/jl/ lib/*.jl", |
| 23 | + "test": "run-s -c lint test:intg test:pyimport", |
| 24 | + "test:intg": "pytest --nopercyfinalize --headless tests/integration ", |
| 25 | + "test:pyimport": "python -m unittest tests/test_dash_import.py", |
| 26 | + "build:js": "webpack --mode production", |
| 27 | + "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 -k RangeSlider,Slider,Dropdown,RadioItems,Checklist,DatePickerSingle,DatePickerRange,Input,Link --r-prefix 'dcc' --r-suggests 'dash,dashHtmlComponents,jsonlite,plotly' --jl-prefix 'dcc' && black dash_core_components", |
| 28 | + "build": "run-s prepublishOnly build:js build:backends", |
| 29 | + "postbuild": "es-check es2015 dash_core_components/*.js", |
| 30 | + "build:watch": "watch 'npm run build' src", |
| 31 | + "format": "run-s private::format.*", |
| 32 | + "lint": "run-s private::lint.*" |
| 33 | + }, |
| 34 | + "author": "Chris Parmer <chris@plotly.com>", |
| 35 | + "maintainer": "Alex Johnson <alex@plotly.com>", |
| 36 | + "license": "MIT", |
| 37 | + "dependencies": { |
| 38 | + "@fortawesome/fontawesome-svg-core": "1.2.36", |
| 39 | + "@fortawesome/free-regular-svg-icons": "^5.15.4", |
| 40 | + "@fortawesome/free-solid-svg-icons": "^5.15.4", |
| 41 | + "@fortawesome/react-fontawesome": "^0.1.17", |
| 42 | + "base64-js": "^1.5.1", |
| 43 | + "color": "^4.2.3", |
| 44 | + "d3-format": "^1.4.5", |
| 45 | + "fast-isnumeric": "^1.1.4", |
| 46 | + "file-saver": "^2.0.5", |
| 47 | + "highlight.js": "^11.8.0", |
| 48 | + "mathjax": "^3.2.2", |
| 49 | + "moment": "^2.29.4", |
| 50 | + "node-polyfill-webpack-plugin": "^2.0.1", |
| 51 | + "prop-types": "^15.8.1", |
| 52 | + "ramda": "^0.29.0", |
| 53 | + "rc-slider": "^9.7.5", |
| 54 | + "react-addons-shallow-compare": "^15.6.3", |
| 55 | + "react-dates": "^21.8.0", |
| 56 | + "react-docgen": "^5.4.3", |
| 57 | + "react-dropzone": "^4.1.2", |
| 58 | + "react-fast-compare": "^3.2.2", |
| 59 | + "react-markdown": "^4.3.1", |
| 60 | + "react-resize-detector": "^6.7.6", |
| 61 | + "react-select-fast-filter-options": "^0.2.3", |
| 62 | + "react-virtualized-select": "^3.1.3", |
| 63 | + "remark-math": "^3.0.1", |
| 64 | + "uniqid": "^5.4.0" |
| 65 | + }, |
| 66 | + "devDependencies": { |
| 67 | + "@babel/cli": "^7.22.10", |
| 68 | + "@babel/core": "^7.22.10", |
| 69 | + "@babel/plugin-syntax-dynamic-import": "^7.8.3", |
| 70 | + "@babel/preset-env": "^7.22.10", |
| 71 | + "@babel/preset-react": "^7.22.5", |
| 72 | + "@plotly/dash-component-plugins": "^1.2.3", |
| 73 | + "@plotly/webpack-dash-dynamic-import": "^1.3.0", |
| 74 | + "babel-loader": "^9.1.3", |
| 75 | + "component-playground": "^3.2.1", |
| 76 | + "copyfiles": "^2.4.1", |
| 77 | + "css-loader": "^6.8.1", |
| 78 | + "es-check": "^7.1.1", |
| 79 | + "eslint": "^8.41.0", |
| 80 | + "eslint-config-prettier": "^8.8.0", |
| 81 | + "eslint-plugin-import": "^2.27.5", |
| 82 | + "eslint-plugin-react": "^7.32.2", |
| 83 | + "identity-obj-proxy": "^3.0.0", |
| 84 | + "npm-run-all": "^4.1.5", |
| 85 | + "prettier": "^2.8.8", |
| 86 | + "react": "^16.14.0", |
| 87 | + "react-dom": "^16.14.0", |
| 88 | + "react-jsx-parser": "1.21.0", |
| 89 | + "style-loader": "^3.3.3", |
| 90 | + "styled-jsx": "^3.4.4", |
| 91 | + "webpack": "^5.88.2", |
| 92 | + "webpack-cli": "^5.1.4" |
| 93 | + }, |
| 94 | + "files": [ |
| 95 | + "/dash_core_components/*{.js,.map}", |
| 96 | + "/lib/" |
| 97 | + ], |
| 98 | + "peerDependencies": { |
| 99 | + "react": ">=16", |
| 100 | + "react-dom": ">=16" |
| 101 | + }, |
| 102 | + "browserslist": [ |
| 103 | + "last 8 years and not dead" |
| 104 | + ] |
105 | 105 | }
|
0 commit comments