-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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": "Privateer",
"version": "1.0.0",
"description": "Your favorite Kubernetes deployment/monitoring tool",
"main": "main.js",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@kubernetes/client-node": "^0.15.1",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.0.4",
"@mui/material": "^5.0.4",
"@mui/x-data-grid": "^4.0.1",
"axios": "^0.24.0",
"electron": "^15.3.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-graph-vis": "^1.0.7",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/dom": "^8.10.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.0.4",
"concurrently": "^5.0.0",
"cross-env": "^6.0.3",
"csp-html-webpack-plugin": "^5.1.0",
"css-loader": "3.6.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.4.0",
"jest": "^27.3.1",
"jest-canvas-mock": "^2.3.1",
"kill-port": "^1.6.1",
"nodemon": "^1.18.9",
"style-loader": "^0.23.1",
"wait-on": "^6.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^4.3.1"
},
"scripts": {
"start": "NODE_ENV='production' concurrently 'node ./server/server.js' 'electron .'",
"build": "NODE_ENV='production' webpack",
"dev": "NODE_ENV='development' concurrently 'kill-port 3070' 'webpack serve' 'nodemon ./server/server.js' 'wait-on tcp:8080 && electron .'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/Privateer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/Privateer/issues"
},
"homepage": "https://github.com/oslabs-beta/Privateer#readme"
}