-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 2.33 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
{
"name": "dash-devextreme",
"version": "0.11.4",
"description": "Wrapper of DevExtreme components for Plotly Dash",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/pikhovkin/dash-devextreme.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pikhovkin/dash-devextreme/issues"
},
"homepage": "https://github.com/pikhovkin/dash-devextreme",
"keywords": [
"dash",
"plotly",
"plotly-dash",
"devextreme"
],
"author": "Sergei Pikhovkin [email protected]",
"scripts": {
"start": "webpack-serve ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublish": "npm run validate-init",
"build:js-dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:py": "node ./extract-meta.js src/lib/components > dash_devextreme/metadata.json && copyfiles package.json dash_devextreme && venv/bin/python -c \"import dash; dash.development.component_loader.generate_classes('dash_devextreme', 'dash_devextreme/metadata.json')\"",
"build:all": "npm run build:js && npm run build:js-dev && npm run build:py",
"publish-all": "npm publish && python setup.py sdist upload",
"publish-pypi": "npm run prepublish && python setup.py sdist upload"
},
"dependencies": {
"devextreme": "^18.2.3",
"devextreme-react": "^18.2.3",
"ramda": "^0.26.1",
"react": "16.3.0",
"react-dom": "16.3.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copyfiles": "^2.0.0",
"css-loader": "^2.1.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"npm": "^6.13.7",
"react-docgen": "^2.20.1",
"style-loader": "^0.21.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-serve": "^3.0.0"
},
"peerDependencies": {
"react": ">=0.14",
"react-dom": ">=0.14"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}