-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "janusgraph-visualizer",
"version": "1.0.0",
"author": "JanusGraph Contributors",
"description": "Visualize graph network corresponding to a gremlin query",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "^4.5.1",
"axios": "^1.7.4",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.1",
"gremlin": "^3.7.2",
"lodash": "^4.17.21",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-json-to-table": "^0.1.5",
"react-redux": "^7.1.3",
"react-scripts": "^5.0.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"vis-data": "^7.1.4",
"vis-network": "^9.1.2",
"webpack-dev-server": "^5.0.4"
},
"overrides": {
"@svgr/webpack": "6.2.1",
"react-scripts": {
"postcss": "8.4.31"
},
"follow-redirects": "^1.15.6",
"webpack-dev-middleware": "^5.3.4"
},
"proxy": "http://localhost:3001",
"scripts": {
"clientdev": "react-scripts start",
"client": "npx serve -s build",
"server": "node proxy-server.js",
"dev": "concurrently \"npm run server\" \"npm run clientdev\"",
"start": "concurrently \"npm run server\" \"npm run client\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"concurrently": "^7.4.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}