-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
92 lines (92 loc) · 3.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "dbaas-dynamic-plugin",
"version": "0.6.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/RHEcosystemAppEng/dbaas-dynamic-plugin.git"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "yarn clean && NODE_ENV=production yarn ts-node ./node_modules/.bin/webpack --mode=production",
"build-dev": "yarn lint && yarn format && yarn clean && yarn ts-node ./node_modules/.bin/webpack",
"img": "echo quay.io/$QUAY_USER/$npm_package_name:$npm_package_version",
"img-build": "podman build --pull -f Dockerfile --platform linux/amd64 -t quay.io/$QUAY_USER/$npm_package_name:$npm_package_version .",
"img-push": "podman push quay.io/$QUAY_USER/$npm_package_name:$npm_package_version",
"img-run": "podman run -it -p 9001:9001 quay.io/$QUAY_USER/$npm_package_name:$npm_package_version",
"http-server": "./http-server.sh ./dist",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}' -I '/node_modules/(?!(@console)/)/'",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "eslint .",
"run-dev": "yarn build-dev && yarn http-server"
},
"dependencies": {
"@octokit/core": "^4.0.5",
"@patternfly/react-core": "4.162.2",
"@patternfly/react-table": "4.31.7",
"@types/node": "^14.14.34",
"crypto": "^1.0.1",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"i18next": "^19.8.3",
"k8s-selector": "^1.0.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.3",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"style-loader": "^2.0.0",
"tweetsodium": "0.0.5"
},
"devDependencies": {
"@openshift-console/dynamic-plugin-sdk": "0.0.5",
"@openshift-console/dynamic-plugin-sdk-webpack": "0.0.5",
"@types/react": "16.8.13",
"@types/react-router-dom": "5.1.2",
"babel-eslint": "^10.1.0",
"comment-json": "4.x",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"http-server": "^14.1.1",
"prettier": "^2.3.2",
"read-pkg": "5.x",
"ts-loader": "6.2.2",
"ts-node": "5.0.1",
"typescript": "3.8.3",
"webpack": "5.63.x",
"webpack-cli": "^4.9.1"
},
"consolePlugin": {
"name": "dbaas-dynamic-plugin",
"version": "0.6.0",
"displayName": "DBaaS Dynamic Plugin",
"description": "Dynamic Plugin for Openshift Console to provide custom components for DBaaS",
"exposedModules": {
"constants": "./const.ts",
"catalog": "./catalog",
"dbaasImportPage": "./components/dbaasImportPage.jsx",
"instanceListPage": "./components/instanceListPage.jsx",
"adminDashboard": "./components/adminDashboard.jsx",
"providerClusterProvisionPage": "./components/providerClusterProvisionPage.jsx"
},
"dependencies": {
"@console/pluginAPI": "*"
}
}
}