-
Notifications
You must be signed in to change notification settings - Fork 737
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.63 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
{
"name": "@console/dynamic-demo-plugin",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && NODE_ENV=production yarn ts-node node_modules/.bin/webpack",
"build-dev": "yarn clean && yarn ts-node node_modules/.bin/webpack",
"build-plugin-sdk": "yarn --cwd ../frontend build-plugin-sdk && yarn install-plugin-sdk",
"install-plugin-sdk": "rm -rf node_modules/@openshift-console && yarn install",
"start-console": "./start-console.sh",
"http-server": "./http-server.sh dist",
"i18n": "i18next \"src/**/*.{js,jsx,ts,tsx}\" -c i18next-parser.config.js",
"ts-node": "NODE_OPTIONS='--preserve-symlinks' ts-node -O '{\"module\":\"commonjs\"}'"
},
"devDependencies": {
"@openshift-console/dynamic-plugin-sdk": "portal:../frontend/packages/console-dynamic-plugin-sdk/dist/core",
"@openshift-console/dynamic-plugin-sdk-webpack": "portal:../frontend/packages/console-dynamic-plugin-sdk/dist/webpack",
"@openshift-console/plugin-shared": "portal:../frontend/packages/console-plugin-shared/dist",
"@patternfly/react-core": "5.1.1",
"@patternfly/react-icons": "5.1.1",
"@patternfly/react-table": "5.1.1",
"@types/react": "16.8.13",
"@types/react-measure": "^2.0.6",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "5.3.x",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "0.28.x",
"file-loader": "1.1.11",
"http-server": "0.12.x",
"i18next-parser": "^3.3.0",
"js-yaml": "^4.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.12.0",
"react-router": "5.3.x",
"react-router-dom": "5.3.x",
"react-router-dom-v5-compat": "^6.11.2",
"style-loader": "0.23.1",
"ts-loader": "9.x",
"ts-node": "10.9.2",
"typescript": "4.5.5",
"webpack": "^5.75.0",
"webpack-cli": "5.0.x"
},
"resolutions": {
"follow-redirects": "^1.16.0",
"@types/d3-dispatch": "3.0.6"
},
"consolePlugin": {
"name": "console-demo-plugin",
"version": "0.0.0",
"displayName": "Console Demo Plugin",
"description": "Plasma reactors online. Initiating hyper drive.",
"exposedModules": {
"exampleNavs": "./utils/example-navs",
"barUtils": "./utils/bar",
"perspective": "./utils/perspective",
"telemetry": "./utils/telemetry",
"extensionConsumer": "./components/ExtensionConsumer",
"utilityConsumer": "./components/UtilityConsumer",
"exampleProxyPage": "./components/ExampleProxyPage",
"K8sAPIConsumer": "./components/k8sConsumer/K8sAPIConsumer",
"exampleNamespacedPage": "./components/ExampleNamespacedPage",
"navPage": "./components/Nav",
"listPage": "./components/ListPage",
"projectTabContent": "./components/ProjectTabExtensionContent",
"clusterInventoryOverview": "./components/ClusterOverview/Inventory",
"clusterOverview": "./utils/cluster-overview",
"yamlEditor": "./components/YAMLEditorPage",
"events": "./components/APIServerEvents",
"dashboardCard": "./components/DashboardCard",
"overviewDetailItem": "./components/OverviewDetailItem",
"customOverviewDetailItem": "./components/CustomOverviewDetailItem",
"projectOverviewInventory": "./components/ProjectOverview/Inventory",
"projectOverview": "./utils/project-overview",
"modalPage": "./components/Modals/ModalPage",
"sampleErrorBoundaryPage": "./components/ErrorBoundary/SampleErrorBoundaryPage",
"createProjectModal": "./components/Modals/CreateProjectModal"
},
"disableStaticPlugins": [
"@console/demo-plugin"
]
},
"packageManager": "yarn@4.12.0"
}