This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 3.06 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
{
"private": true,
"scripts": {
"start": "webpack-dev-server --config webpack.config.js",
"build": "webpack -p --config webpack.config.js --display-error-details",
"prettify-all": "node_modules/.bin/prettier --write **/*.{js,json,css}",
"lint-check": "node_modules/.bin/prettier --check **/*.{js,json,css}",
"test": "jest --coverage --silent --bail",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/dom": "^7.29.1",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^5.0.9",
"identity-obj-proxy": "^3.0.0",
"jest-canvas-mock": "^2.3.0",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.6",
"less-loader": "6.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-graph-vis": "^1.0.5",
"react-router-dom": "^5.2.0",
"robotstxt-webpack-plugin": "^7.0.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"vis-network": "^8.5.6",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"@ant-design/dark-theme": "^2.0.2",
"@ant-design/icons": "^4.3.0",
"@kubernetes/client-node": "git+https://github.com/LiqoTech/kubernetes-client-javascript.git#browser",
"@openapi-contrib/openapi-schema-to-json-schema": "^3.0.4",
"@rjsf/antd": "^2.4.1",
"@rjsf/core": "^2.4.1",
"ace-builds": "^1.4.12",
"antd": "^4.10.0",
"antd-dayjs-webpack-plugin": "^1.0.4",
"antd-theme-generator": "^1.2.8",
"antd-theme-webpack-plugin": "^1.3.7",
"bizcharts": "4.0.14",
"csvtojson": "^2.0.10",
"dayjs": "^1.10.1",
"file-saver": "^2.0.5",
"generate-schema": "^2.6.0",
"jest": "^26.6.3",
"js-cookie": "^2.2.1",
"lodash": "^4.17.20",
"oidc-client": "^1.10.1",
"react-ace": "^9.2.1",
"react-color": "^2.19.3",
"react-css-theme-switcher": "^0.2.2",
"react-drag-listview": "^0.1.8",
"react-github-btn": "^1.2.0",
"react-grid-layout": "^1.2.0",
"react-measure": "^2.5.2",
"react-resizable": "^1.11.0",
"react-resize-detector": "^5.2.0",
"yaml": "^1.10.0"
},
"prettier": {
"printWidth": 80,
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write"
]
}
}