forked from openshift/monitoring-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.79 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.79 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
{
"name": "monitoring-console-plugin",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:openshift/monitoring-plugin.git",
"scripts": {
"build": "npm run clean && NODE_ENV=production npm run ts-node node_modules/.bin/webpack",
"build:dev": "yarn clean && yarn ts-node node_modules/.bin/webpack",
"build:standalone": "yarn clean && yarn ts-node node_modules/.bin/webpack --config webpack.standalone.config.ts",
"clean": "rm -rf dist",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:run:ci": "NO_COLOR=1 npx cypress run --browser chrome",
"i18n": "i18next \"src/components/**/*.{js,jsx,ts,tsx}\" [-oc] -c i18next-parser.config.js",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"pre-commit:check": "yarn lint",
"prepare": "husky install",
"start": "yarn ts-node node_modules/.bin/webpack serve --stats-error-details",
"start:standalone": "yarn ts-node node_modules/.bin/webpack serve --stats-error-details --config webpack.standalone.config.ts",
"start-console": "./start-console.sh",
"test": "npm run cypress:run:ci",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}'"
},
"dependencies": {
"@codemirror/autocomplete": "^6.0.4",
"@codemirror/commands": "^6.0.1",
"@codemirror/language": "^6.2.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/search": "^6.0.0",
"@codemirror/state": "^6.1.0",
"@codemirror/view": "^6.0.3",
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0",
"@openshift-console/dynamic-plugin-sdk": "^0.0.20",
"@openshift-console/dynamic-plugin-sdk-internal": "^0.0.11",
"@openshift-console/dynamic-plugin-sdk-webpack": "^0.0.10",
"@openshift-console/plugin-shared": "^0.0.3",
"@patternfly/react-charts": "6.94.19",
"@patternfly/react-core": "4.276.8",
"@patternfly/react-table": "4.113.0",
"@prometheus-io/codemirror-promql": "^0.37.0",
"classnames": "2.x",
"fuzzysearch": "1.0.x",
"i18next": "^21.8.14",
"i18next-http-backend": "^2.2.0",
"i18next-parser": "^7.9.0",
"immutable": "3.x",
"lodash-es": "^4.17.21",
"murmurhash-js": "1.0.x",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.11",
"react-linkify": "^0.2.2",
"react-modal": "^3.12.1",
"react-redux": "7.2.2",
"react-router": "5.3.x",
"react-router-dom": "5.3.x",
"redux": "4.0.1"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^18.0.0",
"@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",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"cypress": "^12.3.0",
"eslint": "8.44.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"prettier": "^2.6.0",
"sass": "^1.42.1",
"sass-loader": "^10.1.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"resolutions": {
"webpack": "^5.76.0",
"tough-cookie": "^4.1.3"
},
"consolePlugin": {
"name": "monitoring-plugin",
"version": "1.0.0",
"displayName": "OpenShift console monitoring plugin",
"description": "This plugin adds the monitoring UI to the OpenShift web console",
"exposedModules": {
"MonitoringUI": "./components/alerting"
},
"dependencies": {
"@console/pluginAPI": "*"
}
}
}