97 lines
2.7 KiB
JSON
97 lines
2.7 KiB
JSON
{
|
|
"name": "ops-portal",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"webpack-build": "webpack --verbose --config webpack.config.js src",
|
|
"lint": "eslint \"**/?*.{ts,tsx,js}\"",
|
|
"lint:fix": "eslint --fix \"**/?*.{ts,tsx,js}\"",
|
|
"lint:quiet": "yarn lint --quiet",
|
|
"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",
|
|
"test": "jest",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"dependencies": {
|
|
"@jsonforms/core": "^2.5.2",
|
|
"@jsonforms/material-renderers": "^2.5.2",
|
|
"@jsonforms/react": "^2.5.2",
|
|
"@material-ui/core": "^4.12.4",
|
|
"@material-ui/icons": "^4.11.3",
|
|
"@material-ui/lab": "^4.0.0-alpha.56",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"formik": "^2.4.5",
|
|
"js-cookie": "^2.2.1",
|
|
"react": "^17.0.2",
|
|
"react-cookie": "4.0.3",
|
|
"react-dom": "^17.0.2",
|
|
"react-router": "^5.3.4",
|
|
"react-router-dom": "^5.3.4",
|
|
"react-scripts": "4.0.3",
|
|
"react-toastify": "^6.2.0",
|
|
"ts-loader": "4.4.2",
|
|
"typescript-eslint": "^0.0.1-alpha.0",
|
|
"webpack": "4.0.0",
|
|
"webpack-cli": "3.3.12",
|
|
"yup": "^1.3.3"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^4.2.4",
|
|
"@types/enzyme": "^3.10.18",
|
|
"@types/enzyme-adapter-react-16": "^1.0.9",
|
|
"@types/jest": "^24.9.1",
|
|
"@types/lodash": "^4.14.202",
|
|
"@types/material-ui": "^0.21.16",
|
|
"@types/react": "^17.0.75",
|
|
"@types/react-dom": "^17.0.25",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@types/yup": "^0.29.13",
|
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
"@typescript-eslint/parser": "^2.34.0",
|
|
"autoprefixer": "^10.4.8",
|
|
"awesome-typescript-loader": "^5.2.1",
|
|
"babel-loader": "^8.3.0",
|
|
"copy-webpack-plugin": "^5.1.2",
|
|
"css-loader": "^3.2.0",
|
|
"date-fns": "^2.29.3",
|
|
"enzyme": "^3.10.0",
|
|
"enzyme-adapter-react-16": "^1.15.7",
|
|
"eslint": "^7.0.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
|
"html-webpack-plugin": "^4.0.0",
|
|
"husky": "^3.1.0",
|
|
"jest": "^26.6.3",
|
|
"prettier": "^2.8.8",
|
|
"ts-jest": "^26.5.6",
|
|
"typescript": "^3.9.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"fsevents": "^2.1.3"
|
|
},
|
|
"engines": {
|
|
"npm": ">=10.2.3",
|
|
"node": ">=18.19.0"
|
|
}
|
|
}
|