-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
73 lines (73 loc) · 2.45 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
{
"name": "KubeScrape",
"version": "1.0.0",
"description": "Kubernetes cluster metrics visualizer",
"main": "src/main.js",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --config webpack.build.config.js && electron --noDevServer .",
"start": "cross-env NODE_ENV=development webpack serve --hot --host 0.0.0.0 --config webpack.dev.config.js --mode development",
"build": "cross-env NODE_ENV=production webpack --config webpack.build.config.js --mode production",
"package": "npm run build",
"postpackage": "electron-packager ./ --all --asar --icon=KUBESCRAPE.icns --out=./builds"
},
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/KubeScrape.git"
},
"keywords": [],
"author": "Vince Nguyen",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/KubeScrape/issues"
},
"homepage": "https://github.com/oslabs-beta/KubeScrape#readme",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.5",
"chart.js": "^3.6.0",
"electron": "^15.2.0",
"electron-squirrel-startup": "^1.0.0",
"react": "^17.0.2",
"react-chartjs-2": "^3.3.0",
"react-dom": "^17.0.2",
"react-gauge-chart": "^0.4.0",
"react-graph-vis": "^1.0.7",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"redux": "^4.1.1",
"redux-thunk": "^2.4.0",
"regenerator-runtime": "^0.13.9",
"sass": "^1.43.3",
"sass-loader": "^12.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"electron": "^13.1.9",
"electron-devtools-installer": "^3.2.0",
"electron-packager": "^15.4.0",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"redux-devtools-extension": "^2.13.9",
"style-loader": "^3.3.1",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}