-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.46 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
{
"name": "console-gitops-plugin",
"description": "OpenShift Console plugin for GitOps",
"version": "0.0.1",
"private": true,
"scripts": {
"build-ORIG": "yarn clean && NODE_ENV=production yarn ts-node ./node_modules/.bin/webpack --mode=production",
"build-dev-ORIG": "yarn clean && yarn ts-node ./node_modules/.bin/webpack --mode=development",
"http-server-ORIG": "./http-server.sh ./dist",
"ts-node-ORIG": "ts-node -O '{\"module\":\"commonjs\"}' -I '/node_modules/(?!(@openshift-console)/)/'",
"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",
"start-console": "./start-console.sh",
"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.11",
"@openshift-console/dynamic-plugin-sdk-webpack": "0.0.7",
"@openshift-console/dynamic-plugin-sdk-internal": "0.0.9",
"@patternfly/react-core": "4.175.4",
"@patternfly/react-table": "4.44.4",
"@types/node": "^17.0.21",
"@types/react": "^17.0.37",
"@types/react-helmet": "^6.1.4",
"@types/react-router-dom": "^5.3.2",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"css-loader": "^6.7.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"prettier": "^2.6.0",
"react": "17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.11",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"i18next": "^19.8.3",
"lodash-es": "^4.17.21"
},
"consolePlugin": {
"name": "console-gitops-plugin",
"version": "0.0.1",
"displayName": "GitOps Plugin",
"description": "OpenShift Console plugin for Gitops.",
"exposedModules": {
"environments": "./components/GitOpsListPage"
},
"dependencies": {
"@console/pluginAPI": "*"
}
}
}