-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
{
"name": "biothings-explorer",
"version": "0.5.0",
"private": true,
"proxy": "http://localhost:8856/",
"homepage": "https://biothings.io/",
"dependencies": {
"@biothings-explorer/explain": "^2.1.0",
"@biothings-explorer/smartapi-kg": "^4.0.0",
"@codemirror/autocomplete": "^6.4.2",
"@codemirror/lang-json": "^6.0.1",
"@reduxjs/toolkit": "^1.9.3",
"axios": "^0.21.1",
"biomedical-id-autocomplete": "^2.0.4",
"codemirror": "^6.0.1",
"cytoscape": "^3.15.2",
"cytoscape-edgehandles": "^3.6.0",
"cytoscape-klay": "^3.1.4",
"cytoscape-popper": "^2.0.0",
"d3": "^4.13.0",
"express": "^4.17.1",
"jsoneditor": "^9.10.2",
"lodash": "^4.17.21",
"marked": "^4.2.12",
"moment": "^2.29.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.3.0",
"react-scripts": "3.1.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"tippy.js": "^6.3.1",
"zdog": "^1.1.3"
},
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run --headed",
"start": "cross-env PORT=8855 react-scripts start",
"instrumented": "cross-env PORT=8855 react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@cypress/code-coverage": "^3.9.6",
"@cypress/instrument-cra": "^1.4.0",
"cross-env": "^7.0.3",
"cypress": "^7.7.0",
"wait-on": "^5.3.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}