forked from plotly/dash-core-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.94 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
{
"name": "dash-core-components",
"version": "0.48.0",
"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": {
"prepare": "npm run build",
"publish-all": "node scripts/publish.js",
"start": "webpack-serve ./webpack.serve.config.js --open",
"lint": "eslint src test",
"lint:py": "flake8 --ignore=E501,F401,F841,F811 test",
"test": "run-s -c lint lint:py format:test test-unit test:py test:pyimport",
"test:py": "python -m unittest test.test_integration",
"test:pyimport": "python -m unittest test.test_dash_import",
"test-unit": "jest",
"format": "prettier --config .prettierrc --write src/**/*.js test/unit/*.js",
"format:test": "prettier --config .prettierrc src/**/*.js test/unit/*.js --list-different",
"uninstall-local": "pip uninstall dash-core-components -y",
"build:js": "webpack --mode production",
"build:py_and_r": "dash-generate-components ./src/components dash_core_components -p package-info.json --r-prefix 'dcc'",
"build": "npm run build:js && npm run build:py_and_r",
"build:watch": "watch 'npm run build' src"
},
"author": "Chris Parmer <[email protected]>",
"license": "MIT",
"dependencies": {
"color": "^3.1.0",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"ramda": "^0.24.1",
"rc-slider": "^8.6.11",
"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-select-fast-filter-options": "^0.2.3",
"react-virtualized-select": "^3.1.3",
"uniqid": "^5.0.3"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-react": "^7.0.0",
"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",
"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",
"style-loader": "^0.23.1",
"styled-jsx": "^3.1.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-serve": "^2.0.3"
},
"files": [
"/dash_core_components/*{.js,.map}"
],
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}