forked from plotly/dash-core-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.98 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
{
"name": "dash-core-components",
"version": "0.18.1",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
"url": "git://github.com/plotly/dash-core-components.git"
},
"main": "src/index.js",
"scripts": {
"build-dev": "builder run clean-lib && builder run extract-metadata && webpack -w --config=./config/webpack/webpack.config.dev.js",
"build-dist": "builder run clean-lib && builder run extract-metadata && NODE_ENV=production webpack --config=./config/webpack/webpack.config.dist.js",
"copy-lib": "cp lib/* dash_core_components",
"install-local": "npm run copy-lib && python setup.py install",
"prepublish": "npm test && builder run build-dist && npm run copy-lib",
"publish-all": "npm publish && python setup.py sdist upload",
"publish-pypi": "npm run prepublish && python setup.py sdist && twine upload --sign --skip-existing",
"start": "./node_modules/.bin/builder run build-dev",
"test": "./node_modules/.bin/eslint --fix --ignore-path .gitignore --ext *.js src",
"test-watch": "./node_modules/.bin/builder run test-frontend-watch",
"test-debug": "./node_modules/.bin/builder run test-frontend-debug",
"uninstall-local": "pip uninstall dash-core-components -y"
},
"author": "Chris Parmer <[email protected]>",
"license": "MIT",
"dependencies": {
"builder": "3.2.2",
"dash-components-archetype": "^0.2.11",
"moment": "^2.20.1",
"radium": "^0.19.4",
"ramda": "^0.24.1",
"rc-slider": "^8.3.1",
"react": "^15.4.0",
"react-addons-shallow-compare": "^15.6.0",
"react-dates": "^12.3.0",
"react-dom": "^15.4.0",
"react-dropzone": "^4.1.2",
"react-markdown": "^2.4.5",
"react-select": "^1.0.0-rc.10",
"react-select-fast-filter-options": "^0.2.2",
"react-syntax-highlighter": "^5.0.0",
"react-virtualized-select": "^3.1.0"
},
"devDependencies": {
"component-playground": "^2.0.0",
"dash-components-archetype-dev": "^0.2.11",
"enzyme": "^2.4.1"
}
}