-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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": "ELEX",
"version": "1.0.0",
"private": true,
"main": "electron/main.js",
"repository": "https://github.com/HPI-Information-Systems/ELEX",
"author": "Benjamin Feldmann <[email protected]>",
"license": "MIT",
"description": "A graph exploration tool that makes it easier to understand graphs.",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"lint": "eslint ./app -f table",
"lint:fix": "eslint ./app -f table --fix",
"electron": "electron ./electron/dev.js",
"build-electron": "npm run build && cd electron && npm run dist",
"build-electron-win": "npm run build && cd electron && npm run dist-win",
"build-electron-mac": "npm run build && cd electron && npm run dist-mac",
"build-electron-linux": "npm run build && cd electron && npm run pack-linux"
},
"devDependencies": {
"babel-plugin-import": "^1.11.0",
"customize-cra": "^0.2.12",
"electron": "^4.0.7",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "7.12.4",
"node-sass": "^4.5.3",
"prettier": "1.16.4",
"react-app-rewired": "^2.1.0"
},
"dependencies": {
"antd": "^3.14.1",
"axios": "^0.18.0",
"d3": "5.9.1",
"d3-brush": "^1.0.4",
"d3-context-menu": "^1.0.2",
"eslint-import-resolver-node": "^0.3.2",
"flexboxgrid": "^6.3.1",
"font-awesome": "^4.7.0",
"js-file-download": "^0.4.1",
"lodash": "^4.17.4",
"material-design-icons": "^3.0.1",
"moment": "^2.22.2",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-addons-css-transition-group": "15.6.2",
"react-color": "^2.13.8",
"react-contextify": "^0.1.0",
"react-dom": "16.8.3",
"react-file-reader-input": "^2.0.0",
"react-hot-loader": "^4.7.2",
"react-redux": "6.0.1",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"react-scripts": "2.1.5",
"react-sidebar": "^3.0.2",
"redux": "4.0.1",
"redux-logger": "^3.0.6",
"redux-promise": "^0.6.0",
"redux-thunk": "2.3.0",
"reselect": "^4.0.0",
"roboto-fontface": "^0.10.0",
"save-svg-as-png": "^1.4.11",
"svg-path-outline": "^1.0.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}