forked from plotly/dash-cytoscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.55 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
{
"name": "dash-cytoscape",
"version": "0.3.0",
"description": "A Component Library for Dash aimed at facilitating network visualization in Python, wrapped around Cytoscape.js",
"repository": {
"type": "git",
"url": "git://github.com/plotly/dash-cytoscape.git"
},
"bugs": {
"url": "https://github.com/plotly/dash-cytoscape/issues"
},
"homepage": "https://github.com/plotly/dash-cytoscape",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"lint:test": "eslint src",
"lint": "eslint src --fix",
"build:js-dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:js-dev-extra": "webpack --config webpack.dev.extra.config.js",
"build:js-extra": "webpack --config webpack.prod.extra.config.js",
"build:js-all": "npm run build:js && npm run build:js-dev && npm run build:js-dev-extra && npm run build:js-extra",
"build:backends": "dash-generate-components ./src/lib/components dash_cytoscape -p package-info.json --r-prefix 'cyto' --jl-prefix 'cyto'",
"build:all": "npm run build:js-all && npm run build:backends",
"build:all-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:all)"
},
"author": "The Plotly Team <[email protected]>",
"author-email": "[email protected]",
"license": "MIT",
"dependencies": {
"cytoscape-cola": "^2.3.0",
"cytoscape-cose-bilkent": "^4.0.0",
"cytoscape-dagre": "^2.2.2",
"cytoscape-euler": "^1.2.1",
"cytoscape-klay": "^3.1.2",
"cytoscape-spread": "^3.0.0",
"cytoscape-svg": "0.2.0",
"lodash": "^4.17.11",
"ramda": "^0.25.0",
"react": "^16.14.0",
"react-cytoscapejs": "1.2.1",
"react-dom": "^16.14.0"
},
"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.14.4",
"react-docgen": "^5.3.0",
"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",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-serve": "^1.0.2"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}