-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.58 KB
/
package.json
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
{
"name": "odh-plugin",
"version": "0.0.1",
"private": true,
"repository": "[email protected]:dlabaj/odh-plugin.git",
"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",
"start": "yarn ts-node node_modules/.bin/webpack serve",
"i18n": "i18next \"src/**/*.{js,jsx,ts,tsx}\" [-oc] -c i18next-parser.config.js",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}'",
"lint": "eslint ./src --fix"
},
"devDependencies": {
"@openshift-console/dynamic-plugin-sdk": "0.0.3",
"@openshift-console/dynamic-plugin-sdk-webpack": "0.0.4",
"@patternfly/react-core": "4.175.4",
"@patternfly/react-icons": "^4.32.1",
"@types/node": "^16.11.13",
"@types/react": "^17.0.37",
"@types/react-helmet": "^6.1.4",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.3.2",
"@types/webpack-dev-server": "^4.5.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"comment-json": "^4.1.1",
"css-loader": "^6.5.1",
"dompurify": "^2.2.6",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"dotenv-webpack": "^6.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"file-loader": "^6.2.0",
"lodash-es": "^4.17.15",
"node-sass": "^4.14.1",
"prettier": "^2.5.1",
"react": "17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.11",
"react-redux": "^7.2.1",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.3.1",
"showdown": "^1.9.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"consolePlugin": {
"name": "odh-plugin",
"version": "0.0.1",
"displayName": "OpenShift Console Customization Plugin",
"description": "Allows you to work with ConsoleLink and other customization resources.",
"exposedModules": {
"EnabledApplications": "/pages/enabledApplications/PluginEnabledApplications",
"ExploreApplications": "/pages/exploreApplication/PluginExploreApplications",
"perspective": "./utilities/perspective"
},
"dependencies": {
"@console/pluginAPI": "*"
}
}
}