-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.95 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.95 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "dash-core-components",
"version": "4.0.0-rc6",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
"url": "git://github.com/plotly/dash.git"
},
"bugs": {
"url": "https://github.com/plotly/dash/issues"
},
"homepage": "https://github.com/plotly/dash",
"main": "dash_core_components/dash_core_components.js",
"scripts": {
"private::format.black": "black dash_core_components_base/ tests/ setup.py",
"private::format.eslint": "eslint src --fix",
"private::format.prettier": "prettier --config .prettierrc --write src/**/*.js",
"private::lint.black": "black --check dash_core_components_base/ tests/ setup.py",
"private::lint.eslint": "eslint src",
"private::lint.flake8": "flake8 --exclude=dash_core_components,node_modules,venv",
"private::lint.prettier": "prettier --config .prettierrc src/**/*.js --list-different",
"prepublishOnly": "rimraf lib && babel src --out-dir lib --copy-files --config-file ./.lib.babelrc && rimraf --glob lib/jl/ lib/*.jl",
"test": "run-s -c lint test:jest test:intg test:pyimport",
"test:jest": "jest",
"test:intg": "pytest --nopercyfinalize --headless tests/integration ",
"test:pyimport": "python -m unittest tests/test_dash_import.py",
"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 -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",
"build": "run-s prepublishOnly build:js build:backends",
"postbuild": "es-check es2015 dash_core_components/*.js",
"build:watch": "watch 'npm run build' src",
"format": "run-s private::format.*",
"lint": "run-s private::lint.*"
},
"author": "Chris Parmer <chris@plotly.com>",
"maintainer": "Alex Johnson <alex@plotly.com>",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.1.3",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-tooltip": "^1.2.8",
"base64-js": "^1.5.1",
"d3-format": "^1.4.5",
"fast-isnumeric": "^1.1.4",
"file-saver": "^2.0.5",
"highlight.js": "^11.8.0",
"js-search": "^2.0.1",
"mathjax": "^3.2.2",
"date-fns": "^4.1.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"prop-types": "^15.8.1",
"ramda": "^0.30.1",
"react-addons-shallow-compare": "^15.6.3",
"react-docgen": "^5.4.3",
"react-dropzone": "^4.1.2",
"react-fast-compare": "^3.2.2",
"react-input-autosize": "^3.0.0",
"react-markdown": "^4.3.1",
"react-virtualized-select": "^3.1.3",
"remark-math": "^3.0.1",
"uniqid": "^5.4.0"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@plotly/dash-component-plugins": "^1.2.3",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^12.1.5",
"@types/d3-format": "^3.0.4",
"@types/fast-isnumeric": "^1.1.2",
"@types/jest": "^29.5.14",
"@types/js-search": "^1.4.4",
"@types/ramda": "^0.31.0",
"@types/react": "^16.14.8",
"@types/react-dom": "^16.9.13",
"@types/react-input-autosize": "^2.2.4",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"babel-loader": "^9.2.1",
"copyfiles": "^2.4.1",
"css-loader": "^6.8.1",
"es-check": "^7.1.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^30.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-jsx-parser": "1.21.0",
"rimraf": "^5.0.5",
"style-loader": "^3.3.3",
"styled-jsx": "^5.1.7",
"ts-jest": "^29.1.0",
"typescript": "^5.8.3",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"fsevents": "*"
},
"files": [
"/dash_core_components/*{.js,.map}",
"/lib/"
],
"peerDependencies": {
"react": "16 - 19",
"react-dom": "16 - 19"
},
"browserslist": [
"last 9 years and not dead"
]
}