| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "console-plugin-template",
- "version": "0.0.1",
- "private": true,
- "repository": "git@github.com:spadgett/console-plugin-template.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",
- "@types/node": "^16.11.13",
- "@types/react": "^17.0.37",
- "@types/react-helmet": "^6.1.4",
- "@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",
- "comment-json": "^4.1.1",
- "css-loader": "^6.5.1",
- "eslint": "^8.4.1",
- "eslint-config-prettier": "^8.3.0",
- "eslint-plugin-prettier": "^4.0.0",
- "eslint-plugin-react": "^7.27.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-router": "5.2.0",
- "react-router-dom": "5.2.0",
- "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": "console-plugin-template",
- "version": "0.0.1",
- "displayName": "OpenShift Console Plugin Template",
- "description": "Template project for OpenShift console plugins. Edit package.json to change this message and the plugin name.",
- "exposedModules": {
- "ExamplePage": "./components/ExamplePage"
- },
- "dependencies": {
- "@console/pluginAPI": "*"
- }
- }
- }
|