-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.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": "console-crontab-plugin",
"version": "0.0.1",
"private": true,
"repository": "[email protected]:openshift/console-crontab-plugin.git",
"license": "Apache-2.0",
"scripts": {
"check-types": "tsc",
"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": "./i18n-scripts/build-i18n.sh && node ./i18n-scripts/set-english-defaults.js",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}'",
"lint": "eslint ./src ./integration-tests --fix && stylelint \"src/**/*.css\" --allow-empty-input --fix",
"test-cypress": "cd integration-tests && cypress open --env openshift=true",
"test-cypress-headless": "cd integration-tests && node --max-old-space-size=4096 ../node_modules/.bin/cypress run --env openshift=true --browser ${BRIDGE_E2E_BROWSER_NAME:=electron}"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^6.0.0",
"@openshift-console/dynamic-plugin-sdk": "^1.0.0",
"@openshift-console/dynamic-plugin-sdk-webpack": "^1.0.0",
"@patternfly/react-core": "^6.2.0-prerelease.15",
"@patternfly/react-icons": "^6.2.0-prerelease.2",
"@patternfly/react-table": "^6.2.0-prerelease.16",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/react-helmet": "^6.1.4",
"@types/react-router-dom": "^5.3.2",
"@types/react-tagsinput": "^3.19.0",
"@types/webpack-dev-server": "^4.5.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"comment-json": "^4.1.1",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^6.5.1",
"cypress": "^13.0.0",
"cypress-multi-reporters": "^1.6.3",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"i18next-conv": "^12.1.1",
"i18next-parser": "3.x",
"mocha-junit-reporter": "^2.2.1",
"mochawesome": "^7.1.3",
"pluralize": "^8.0.0",
"prettier": "^2.4.1",
"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",
"resolve-url-loader": "^5.0.0",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"stylelint": "^15.10.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"consolePlugin": {
"name": "console-crontab-plugin",
"version": "0.0.1",
"displayName": "Sample CronTab Plugin",
"description": "Sample plugin for the OpenShift Console. This plugin adds basic functionality that allows users to manage CronTab custom resources.",
"exposedModules": {
"CronTabList": "./views/CronTabList/CronTabList.tsx",
"yamlTemplates": "src/templates/index.ts"
},
"dependencies": {
"@console/pluginAPI": "^4.11"
}
},
"resolutions": {
"webpack": "^5.68.0",
"@types/react": "17.0.40"
},
"dependencies": {
"react-tagsinput": "^3.20.0"
}
}