This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
129 lines (129 loc) · 4.58 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
122
123
124
125
126
127
128
129
{
"name": "kafka-ui",
"federatedModuleName": "kafka",
"private": true,
"version": "0.0.1",
"description": "Kafka UI provides a way for managing Strimzi and Kafka clusters (+ other components) deployed by it using a graphical user interface.",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"dr:surge": "node dr-surge.js",
"build": "webpack --config webpack.prod.js && npm run dr:surge",
"start:mockserver": "asapi",
"start:dev": "webpack serve --hot --color --progress --config webpack.dev.js",
"ci-checks": "npm run type-check && npm run lint && npm run test",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"test": "npm-run-all test:jest",
"test:jest": "npm-run-all \"test:jest:* -- {1}\" --",
"test:jest:client": "jest --collectCoverage --config jest.config.js",
"format": "prettier --write src",
"lint:errors": "eslint --ext .tsx,.js,.ts src",
"lint:style": "prettier --check src",
"lint": "npm-run-all lint:*",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css}": "prettier --write"
},
"sideEffects": [
"*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/strimzi/strimzi-ui.git"
},
"license": "Apache-2.0",
"bugs": {},
"homepage": "https://github.com/strimzi/strimzi-ui#readme",
"dependencies": {
"@rhoas/kafka-instance-sdk": "0.55.1",
"object-hash": "3.0.0",
"sentence-case": "3.0.4",
"snake-case": "3.0.4",
"tslib": "2.5.0",
"uuid": "9.0.0"
},
"devDependencies": {
"@patternfly/patternfly": "4.224.2",
"@patternfly/react-charts": "6.94.18",
"@patternfly/react-core": "4.276.6",
"@patternfly/react-icons": "4.93.6",
"@patternfly/react-table": "4.112.39",
"@redhat-cloud-services/frontend-components": "3.9.29",
"@redhat-cloud-services/frontend-components-config": "4.6.39",
"@redhat-cloud-services/frontend-components-notifications": "3.2.12",
"@redhat-cloud-services/frontend-components-utilities": "3.3.12",
"@rhoas/api-mock": "0.55.1",
"@rhoas/app-services-ui-components": "2.20.6",
"@rhoas/app-services-ui-shared": "0.16.6",
"@testing-library/dom": "9.0.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.5.2",
"@types/object-hash": "3.0.2",
"@types/react-dom": "18.0.11",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"axios": "0.27.2",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.3",
"css-minimizer-webpack-plugin": "4.2.2",
"dotenv-webpack": "8.0.1",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-deprecation": "1.3.3",
"eslint-plugin-i18next": "5.2.1",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"i18next": "22.4.13",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"lodash.merge": "4.6.2",
"mini-css-extract-plugin": "2.7.5",
"npm-run-all": "4.1.5",
"null-loader": "4.0.1",
"prettier": "2.8.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "11.18.6",
"react-router-dom": "5.2.1",
"style-loader": "3.3.2",
"terser-webpack-plugin": "5.3.7",
"ts-jest": "27.1.5",
"ts-loader": "9.4.2",
"tsconfig-paths": "4.1.2",
"tsconfig-paths-webpack-plugin": "4.0.1",
"typescript": "4.9.5",
"url-loader": "4.1.1",
"webpack": "5.76.2",
"webpack-bundle-analyzer": "4.8.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.13.1",
"webpack-merge": "5.8.0"
},
"peerDependencies": {
"@patternfly/patternfly": "4.224.2",
"@patternfly/react-core": "4.276.6",
"@patternfly/react-icons": "4.93.6",
"@patternfly/react-table": "4.112.39",
"@redhat-cloud-services/frontend-components": "3.9.29",
"@redhat-cloud-services/frontend-components-notifications": "3.2.12",
"@redhat-cloud-services/frontend-components-utilities": "3.3.12",
"@rhoas/app-services-ui-components": "2.20.6",
"@rhoas/app-services-ui-shared": "0.16.6",
"axios": "0.27.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.2.1"
}
}