-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.61 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
{
"name": "dash-treeview-antd",
"version": "0.0.1",
"description": "Tree view component based on Ant Design widget.",
"keywords": ["dash", "plugin", "treeview", "plotly"],
"main": "build/index.js",
"scripts": {
"start": "webpack-serve ./webpack.serve.config.js --open",
"build:js-dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:py": "node ./extract-meta src/lib/components > dash_treeview_antd/metadata.json && copyfiles package.json dash_treeview_antd && python -c \"import dash; dash.development.component_loader.generate_classes('dash_treeview_antd', 'dash_treeview_antd/metadata.json')\"",
"build:all": "npm run build:js & npm run build:py",
"build:all-dev": "npm run build:js-dev & npm run build:py"
},
"author": "kapot65@gmail.com",
"license": "MIT",
"dependencies": {
"antd": "^3.10.0",
"ramda": "^0.25.0",
"react": "15.4.2",
"react-dom": "15.4.2"
},
"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": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"npm": "^6.1.0",
"react-docgen": "^2.20.1",
"style-loader": "^0.21.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-serve": "^1.0.2"
},
"peerDependencies": {
"react": ">=0.14",
"react-dom": ">=0.14"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}