-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.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
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
{
"name": "qgraph",
"productName": "qgraph_ui",
"version": "1.0.1",
"description": "qgraph - A user interface for biomedical knowledge graph construction and reasoning.",
"author": "CoVar",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.2",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@testing-library/react-hooks": "^3.7.0",
"@testing-library/user-event": "^13.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"css-loader": "^3.6.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-formatter-summary": "^1.0.5",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-testing-library": "^4.12.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^27.0.4",
"msw": "^0.35.0",
"react-refresh": "^0.8.3",
"react-test-renderer": "^16.13.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.9",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@auth0/auth0-react": "^1.6.0",
"@material-ui/core": "^4.11.0",
"@material-ui/data-grid": "^4.0.0-alpha.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"ag-grid-community": "^23.2.1",
"ag-grid-react": "^23.2.1",
"axios": "^0.21.1",
"axios-retry": "^3.1.8",
"body-parser": "^1.20.0",
"bootstrap": "^3.4.1",
"core-js": "^3.6.5",
"d3": "^6.5.0",
"d3-force": "^2.1.1",
"dotenv": "^8.6.0",
"express": "^4.17.3",
"idb-keyval": "^5.0.6",
"js-yaml": "^3.14.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"rc-slider": "^9.3.1",
"rc-tooltip": "^4.2.1",
"react": "^16.13.1",
"react-bootstrap": "^0.33.1",
"react-bootstrap-dialog": "^0.13.0",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.2",
"react-graph-vis": "^1.0.5",
"react-icons": "^3.10.0",
"react-json-view": "^1.20.4",
"react-notification-system": "^0.4.0",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"react-split-pane": "^0.1.92",
"react-table": "^7.5.0",
"react-table-6": "^6.11.0",
"react-virtualized": "^9.21.2",
"react-widgets": "^4.5.0",
"regenerator-runtime": "^0.13.7",
"shortid": "^2.2.15",
"slugify": "^1.4.5"
},
"scripts": {
"start": "webpack --mode=development --config webpack.dev.js && nodemon server.js",
"dev": "concurrently \"webpack --watch --config webpack.dev.js\" \"nodemon server.js\"",
"hot-reload": "HOT_RELOAD=true webpack-dev-server --watch --config webpack.dev.js",
"prod": "webpack --mode=production --config webpack.prod.js && node server.js",
"lint": "eslint src/",
"lint-summary": "eslint -f summary src/",
"test": "jest",
"test:cov": "jest --coverage",
"test:pr": "jest --coverage --coverageReporters='lcov'"
},
"repository": {
"type": "git",
"url": "git://github.com/NCATS-Gamma/qgraph.git"
}
}