forked from plotly/dash-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.43 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
{
"name": "dash_canvas",
"version": "0.1.0",
"description": "Sketching pad for dash based on react-sketch",
"repository": {
"type": "git",
"url": "[email protected]:plotly/dash-canvas.git"
},
"bugs": {
"url": "https://github.com/plotly/dash-canvas/issues"
},
"homepage": "https://github.com/plotly/dash-canvas",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"build:js-dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:py": "node ./extract-meta.js src/lib/components > dash_canvas/metadata.json && copyfiles package.json dash_canvas && python -c \"import dash; dash.development.component_loader.generate_classes('dash_canvas', 'dash_canvas/metadata.json')\"",
"build": "npm run build:js && npm run build:js-dev && npm run build:py && npm run validate-init",
"postbuild": "es-check es5 dash_canvas/*.js"
},
"author": "Emmanuelle Gouillart <[email protected]>",
"license": "MIT",
"dependencies": {
"material-ui": "^0.20.0",
"plotly-icons": ">=1.0",
"react": "16.13.0",
"react-color": "^2.18.0",
"react-dom": "16.13.0",
"react-sketch": ">=0.4.4"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@plotly/webpack-dash-dynamic-import": "^1.1.4",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copyfiles": "^2.0.0",
"css-loader": "^0.28.11",
"es-check": "^5.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"flexboxgrid": "^6.3.1",
"npm": "^6.1.0",
"react-docgen": "^4.1.1",
"react-dropzone": "4.2.7",
"style-loader": "^0.21.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-serve": "^1.0.2"
},
"peerDependencies": {
"react": ">=0.14",
"react-dom": ">=0.14"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}