-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.45 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
97
98
99
{
"name": "lightspeed-console-plugin",
"version": "1.1.3",
"private": true,
"repository": "git@github.com:openshift/lightspeed-console.git",
"license": "Apache-2.0",
"engines": {
"node": ">=22.22.2"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && NODE_ENV=production npm run ts-node node_modules/.bin/webpack",
"build-dev": "npm run clean && npm run ts-node node_modules/.bin/webpack",
"start": "npm run ts-node node_modules/.bin/webpack serve",
"start-console": "./start-console.sh",
"i18n": "./i18n-scripts/build-i18n.sh && node ./i18n-scripts/set-english-defaults.js",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}'",
"lint": "eslint ./*.{js,ts} ./src ./tests ./unit-tests && stylelint \"src/**/*.css\" --allow-empty-input",
"lint-fix": "eslint ./*.{js,ts} ./src ./tests ./unit-tests --fix && stylelint \"src/**/*.css\" --allow-empty-input --fix",
"test": "npx playwright test --ui",
"test-headless": "npx playwright test",
"test-unit": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' node -r ts-node/register --test 'unit-tests/**/*.test.ts'"
},
"dependencies": {
"@openshift-console/dynamic-plugin-sdk": "4.22.0",
"@openshift-console/dynamic-plugin-sdk-webpack": "4.22.0",
"@patternfly/chatbot": "6.6.0",
"@patternfly/react-code-editor": "6.6.0",
"@patternfly/react-core": "6.6.0",
"@patternfly/react-icons": "6.6.0",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.25",
"@types/murmurhash-js": "1.0.7",
"copy-webpack-plugin": "14.0.0",
"css-loader": "^7.1.4",
"dompurify": "3.4.13",
"i18next": "26.3.6",
"js-yaml": "4.3.1",
"lodash": "^4.18.1",
"marked": "14.0.0",
"murmurhash-js": "^1.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "16.5.8",
"react-redux": "9.2.0",
"react-router": "7.13.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "5.109.2",
"webpack-cli": "7.2.2"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"@types/node": "22.20.1",
"@types/react": "18.3.31",
"@typescript-eslint/eslint-plugin": "8.64.0",
"@typescript-eslint/parser": "8.64.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-i18next": "6.1.5",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"i18next-parser": "9.4.0",
"pluralize": "8.0.0",
"prettier": "3.9.5",
"stylelint": "17.14.0",
"stylelint-config-standard": "40.0.0",
"webpack-dev-server": "5.2.6"
},
"overrides": {
"brace-expansion": "1.1.18",
"browserslist": "4.28.7",
"dompurify": "3.4.13",
"fast-uri": "3.1.5",
"js-cookie": "3.0.8",
"monaco-editor": "0.56.0",
"ws": "8.21.2"
},
"consolePlugin": {
"name": "lightspeed-console-plugin",
"version": "1.1.3",
"displayName": "OpenShift Lightspeed Console Plugin",
"description": "Add UI elements for interacting with OpenShift Lightspeed to the OpenShift web console.",
"exposedModules": {
"OLSFlags": "./flags",
"NullContextProvider": "./components/NullContextProvider",
"OLSReducer": "./redux-reducers",
"OverviewDetail": "./components/OverviewDetail",
"useOpenOLS": "./hooks/useOpenOLS",
"usePopover": "./hooks/usePopover"
},
"dependencies": {
"@console/pluginAPI": "*"
}
}
}