-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.65 KB
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
{
"name": "arkmq-org-broker-operator-openshift-ui",
"version": "0.0.1",
"description": "OpenShift Console plugin UI for ArkMQ Broker Operator",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/arkmq-org/arkmq-org-broker-operator-openshift-ui.git"
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && NODE_ENV=production yarn webpack",
"build-dev": "yarn clean && yarn webpack",
"start": "yarn webpack serve --progress",
"start-console": "./start-console.sh",
"i18n": "./i18n-scripts/build-i18n.sh && node ./i18n-scripts/set-english-defaults.js",
"pw:test": "playwright test",
"pw:ui": "playwright test --ui",
"pw:headed": "playwright test --headed",
"lint": "yarn eslint src scripts playwright --fix && stylelint 'src/**/*.css' --allow-empty-input --fix",
"chain-of-trust": "node scripts/chain-of-trust.js",
"prometheus-config": "node scripts/prometheus-config.js",
"webpack": "node -r ts-node/register ./node_modules/.bin/webpack",
"test": "TZ=UTC jest --runInBand",
"test:coverage": "yarn test --watch=false --coverage"
},
"devDependencies": {
"@openshift-console/dynamic-plugin-sdk": "4.22.0",
"@openshift-console/dynamic-plugin-sdk-webpack": "4.22.0",
"@patternfly/react-core": "^6.4.3",
"@patternfly/react-data-view": "^6.5.0",
"@patternfly/react-icons": "^6.4.0",
"@patternfly/react-table": "^6.6.0",
"@playwright/test": "^1.59.1",
"@swc/core": "^1.15.32",
"@swc/jest": "^0.2.37",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/react": "^18.3.28",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^9.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"globals": "^17.6.0",
"i18next": "^25.8.18",
"i18next-parser": "^9.4.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"js-yaml": "^4.1.1",
"pluralize": "^8.0.0",
"prettier": "^3.8.3",
"prettier-stylelint": "^0.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "~16.5.8",
"react-router": "~7.13.1",
"style-loader": "^4.0.0",
"stylelint": "^17.9.1",
"stylelint-config-standard": "^40.0.0",
"swc-loader": "^0.2.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
},
"consolePlugin": {
"name": "arkmq-org-broker-operator-openshift-ui",
"version": "0.0.1",
"displayName": "ArkMQ Broker Operator OpenShift UI",
"description": "OpenShift Console plugin UI for ArkMQ Broker Operator.",
"exposedModules": {
"CreateBrokerAppPage": "./brokerapps/createBrokerApp/CreateBrokerAppPage",
"CreateBrokerServicePage": "./brokerservices/createBrokerService/CreateBrokerServicePage",
"BrokerServiceListPage": "./brokerservices/brokerServiceList/BrokerServiceListPage",
"BrokerServiceDetailsPage": "./brokerservices/brokerServiceDetails/BrokerServiceDetailsPage",
"BrokerAppListPage": "./brokerapps/brokerappList/BrokerAppListPage"
},
"dependencies": {
"@console/pluginAPI": ">=4.22.0-0"
}
}
}