-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
121 lines (121 loc) · 3.85 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "konflux-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "/",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "webpack -c ./webpack.prod.config.js",
"start": "dotenvx run -- webpack server --open -c ./webpack.dev.config.js",
"test": "jest",
"coverage": "jest --coverage --runInBand --detectOpenHandles --forceExit --testPathIgnorePatterns=/pact-tests",
"lint": "yarn lint:ts && yarn lint:sass",
"lint:ts": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"prepare": "husky",
"analyze": "source-map-explorer 'dist/*.js'",
"analyze:webpack": "webpack --analyze -c ./webpack.prod.config.js"
},
"dependencies": {
"@patternfly/patternfly": "^5.3.1",
"@patternfly/react-core": "^5.3.4",
"@patternfly/react-icons": "^5.3.2",
"@patternfly/react-styles": "^5.3.1",
"@patternfly/react-table": "^5.3.4",
"@patternfly/react-tokens": "^5.3.1",
"@patternfly/react-topology": "^5.4.0",
"@patternfly/react-virtualized-extension": "^5.1.0",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.52.0",
"classnames": "^2.5.1",
"dagre": "^0.8.5",
"dayjs": "^1.11.13",
"file-saver": "^2.0.5",
"formik": "^2.4.6",
"formik-pf": "^0.0.1-alpha11",
"git-url-parse": "^15.0.0",
"jotai": "^2.10.1",
"js-base64": "^3.7.7",
"lodash-es": "^4.17.21",
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.1",
"react-router-dom": "^6.25.1",
"sanitize-html": "^2.13.0",
"showdown": "^2.1.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@dotenvx/dotenvx": "^1.7.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@swc/core": "^1.6.13",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.3.2",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "3.3.2",
"react-refresh": "^0.14.2",
"sass": "^1.77.8",
"sass-loader": "^14.2.1",
"source-map-explorer": "^2.5.3",
"style-loader": "^4.0.0",
"stylelint": "^16.6.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-scss": "^6.4.0",
"swc-loader": "^0.2.6",
"type-fest": "^4.22.0",
"typescript": "^5.2.2",
"web-vitals": "^4.2.4",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1",
"whatwg-fetch": "^3.6.20"
},
"sideEffects": [
"*.css",
"*.scss"
],
"lint-staged": {
"*.{ts,tsx,js,mjs,jsx}": [
"prettier --write",
"eslint"
],
"*.{scss,css}": [
"stylelint --config .stylelintrc.json"
]
}
}