forked from functions-dev/ocp-console-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.85 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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "console-functions-plugin",
"version": "0.0.1",
"description": "A Functions-as-a-Service PoC UI for the OpenShift Web Console. Developers create, edit, and deploy serverless functions without CLI knowledge.",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/functions-dev/ocp-console-plugin.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",
"test": "vitest run",
"i18n": "i18next-cli extract",
"lint": "yarn eslint src e2e && stylelint 'src/**/*.css' --allow-empty-input",
"lint:fix": "yarn eslint src e2e --fix && stylelint 'src/**/*.css' --allow-empty-input --fix",
"ci": "yarn lint && yarn test && yarn build",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report .e2e/report",
"type-check": "tsc --noEmit",
"prepare": "husky",
"webpack": "node -r ts-node/register ./node_modules/.bin/webpack"
},
"devDependencies": {
"@openshift-console/dynamic-plugin-sdk": "4.23-latest",
"@openshift-console/dynamic-plugin-sdk-webpack": "4.23-latest",
"@patternfly/react-core": "~6.6.0",
"@patternfly/react-icons": "~6.6.0",
"@patternfly/react-table": "~6.6.0",
"@playwright/browser-chromium": "^1.61.1",
"@playwright/test": "^1.61.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.0.0",
"@types/react": "^18.3.23",
"@vitest/coverage-v8": "^4.1.10",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"husky": "^9.1.7",
"i18next": "^25.10.10",
"i18next-cli": "^1.66.2",
"jsdom": "^29.1.1",
"msw": "^2.15.0",
"prettier": "^3.9.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "~16.5.8",
"react-redux": "~9.2.0",
"react-router": "~7.13.2",
"redux": "~5.0.1",
"style-loader": "^4.0.0",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"ts-loader": "^9.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10",
"webpack": "^5.108.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.6"
},
"consolePlugin": {
"name": "console-functions-plugin",
"version": "0.0.1",
"displayName": "Serverless Functions",
"description": "A Functions-as-a-Service PoC UI for the OpenShift Web Console. Developers create, edit, and deploy serverless functions without CLI knowledge.",
"exposedModules": {
"FunctionsListPage": "./pages/function-list/FunctionsListPage",
"FunctionCreatePage": "./pages/function-create/FunctionCreatePage",
"FunctionEditPage": "./pages/function-edit/FunctionEditPage"
},
"dependencies": {
"@console/pluginAPI": ">=4.19.0"
}
},
"resolutions": {
"launch-editor": ">=2.14.0",
"shell-quote": ">=1.8.4",
"serialize-javascript": ">=7.0.7",
"fast-uri": ">=3.1.2",
"flatted": ">=3.4.3",
"follow-redirects": ">=1.15.12",
"http-proxy-middleware": ">=2.0.10",
"postcss": ">=8.5.23",
"vite": ">=8.0.16",
"ws": ">=8.21.1",
"minimatch": ">=10.2.6"
},
"packageManager": "yarn@4.13.0",
"dependencies": {
"@octokit/rest": "^22.0.1",
"@patternfly/react-code-editor": "~6.6.0",
"libsodium-wrappers": "^0.8.4"
}
}