-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.1 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.1 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
{
"name": "lightspeed-console-plugin",
"version": "1.0.11",
"private": true,
"repository": "git@github.com:openshift/lightspeed-console.git",
"license": "Apache-2.0",
"engines": {
"node": ">=22.22.1"
},
"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 ./cypress ./tests && stylelint \"src/**/*.css\" --allow-empty-input",
"lint-fix": "eslint ./*.{js,ts} ./src ./cypress ./tests --fix && stylelint \"src/**/*.css\" --allow-empty-input --fix",
"test": "npx cypress open",
"test-headless": "npx cypress run --browser chrome"
},
"dependencies": {
"@openshift-console/dynamic-plugin-sdk": "4.19.1",
"@openshift-console/dynamic-plugin-sdk-webpack": "4.19.0",
"@patternfly/chatbot": "6.5.0",
"@patternfly/react-code-editor": "6.4.1",
"@patternfly/react-core": "6.4.1",
"@patternfly/react-icons": "6.4.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "11.18.6",
"react-modal": "^3.16.3",
"react-redux": "7.2.9",
"react-router-dom-v5-compat": "^6.30.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.0"
},
"devDependencies": {
"@cypress/grep": "^6.0.0",
"@types/node": "^22.19.15",
"@types/react": "^17.0.91",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"cypress": "^15.12.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"i18next-parser": "^9.4.0",
"mocha-junit-reporter": "^2.2.1",
"pluralize": "^8.0.0",
"prettier": "^3.8.1",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"webpack-dev-server": "^5.2.3"
},
"overrides": {
"monaco-editor": "0.55.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"consolePlugin": {
"name": "lightspeed-console-plugin",
"version": "1.0.11",
"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": "*"
}
}
}