81 lines
2.5 KiB
JSON
81 lines
2.5 KiB
JSON
{
|
|
"name": "ops-portal",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"webpack-build": "webpack --verbose --config webpack.config.js src",
|
|
"clean": "rm -rf dist",
|
|
"build": "yarn run clean && yarn run webpack-build",
|
|
"start": "yarn run clean && webpack-dev-server --mode development --devtool inline-source-map",
|
|
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx,json}'",
|
|
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
|
|
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"dependencies": {
|
|
"@jsonforms/core": "^2.4.1-alpha.3",
|
|
"@jsonforms/material-renderers": "^2.4.1-alpha.3",
|
|
"@jsonforms/react": "^2.4.1-alpha.3",
|
|
"@material-ui/core": "^4.11.0",
|
|
"@material-ui/icons": "^4.9.1",
|
|
"@material-ui/lab": "^4.0.0-alpha.56",
|
|
"@types/react-redux": "^7.1.11",
|
|
"formik": "^2.2.2",
|
|
"global": "^4.4.0",
|
|
"js-cookie": "^2.2.1",
|
|
"json-to-pretty-yaml": "^1.2.2",
|
|
"react": "^16.13.0",
|
|
"react-cookie": "4.0.3",
|
|
"react-dom": "^16.13.0",
|
|
"react-redux": "^7.2.2",
|
|
"react-router": "^5.2.0",
|
|
"react-router-dom": "^5.2.0",
|
|
"react-scripts": "3.4.0",
|
|
"react-toastify": "^6.0.6",
|
|
"yup": "^0.32.11"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^24.0.22",
|
|
"@types/lodash": "^4.14.149",
|
|
"@types/material-ui": "^0.21.7",
|
|
"@types/node": "^12.0.0",
|
|
"@types/react": "^16.9.0",
|
|
"@types/react-dom": "^16.9.0",
|
|
"@types/react-router-dom": "^5.1.3",
|
|
"@types/react-test-renderer": "^16.9.1",
|
|
"@types/yup": "^0.29.13",
|
|
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
"@typescript-eslint/parser": "^5.44.0",
|
|
"awesome-typescript-loader": "^5.2.1",
|
|
"copy-webpack-plugin": "^5.0.5",
|
|
"css-loader": "^3.2.0",
|
|
"eslint": "^8.28.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.31.11",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
|
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"prettier": "^2.8.0",
|
|
"typescript": "~3.7.2",
|
|
"webpack-cli": "^3.3.11"
|
|
},
|
|
"optionalDependencies": {
|
|
"fsevents": "^2.1.3"
|
|
}
|
|
}
|