-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.08 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "network-viewer",
"version": "0.6.0",
"private": true,
"description": "New frontend app for NDEx database",
"keywords": [
"graph",
"data science",
"bioinformatics",
"visualization"
],
"license": "MIT",
"author": "Keiichiro Ono <[email protected]> (https://idekerlab.ucsd.edu/)",
"contributors": [
"David Otasek",
"Sophie Liu"
],
"repository": {
"type": "git",
"url": "https://github.com/idekerlab/network-viewer.git"
},
"dependencies": {
"@js4cytoscape/cx-viz-converter": "^0.1.6",
"@js4cytoscape/cx2js": "0.6.9-alpha.1",
"@js4cytoscape/cyannotation-cx2js": "^0.8.4",
"@js4cytoscape/ndex-client": "0.4.3-alpha.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/styles": "^4.11.5",
"@react-keycloak/web": "^3.4.0",
"clsx": "^1.1.1",
"cytoscape": "^3.26.0",
"cytoscape-canvas": "^3.0.1",
"deck.gl": "^8.4.11",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"html-react-parser": "^1.2.4",
"keycloak-js": "^21.0.1",
"large-graph-renderer": "^0.3.4",
"linkify-react": "^3.0.4",
"linkifyjs": "^3.0.5",
"namor": "^2.0.2",
"react": "17.0.2",
"react-copy-to-clipboard": "^5.0.2",
"react-cytoscapejs": "^1.2.1",
"react-dom": "17.0.2",
"react-draft-wysiwyg": "^1.14.5",
"react-draggable": "^4.4.3",
"react-helmet": "^6.1.0",
"react-query": "^3.13.0",
"react-router-dom": "6",
"react-scrollbar-size": "^3.0.1",
"react-split-pane": "^0.1.92",
"react-table": "^7.7.0",
"react-table-sticky": "^1.1.3",
"react-tabs": "^3.2.2",
"react-virtualized": "^9.22.3",
"react-virtualized-auto-sizer": "^1.0.5",
"react-window": "^1.8.6",
"string-pixel-width": "^1.10.0",
"styled-components": "^5.2.3"
},
"scripts": {
"start": "PORT=5500 react-scripts start",
"lint": "eslint .",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier"
],
"rules": {
"no-unused-vars": "warn",
"react/prop-types": "off"
},
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.1",
"@types/node": "^18.0.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.14",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"prettier": "^2.7.1",
"react-scripts": "^5.0.1",
"typescript": "^4.7.4"
},
"homepage": "/viewer"
}