UNPKG

cra-template-kenny

Version:

A quick start Create React App template my go to dependencies and configurations

56 lines (55 loc) 1.57 kB
{ "dependencies": { "@material-ui/core": "^4.11.0", "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.3.2", "@testing-library/user-event": "^7.1.2", "classnames": "^2.2.6", "connected-react-router": "^6.8.0", "node-sass": "^4.14.1", "prop-types": "^15.7.2", "react": "^16.13.1", "react-dom": "^16.13.1", "react-router": "^5.2.0", "react-router-dom": "^5.2.0", "react-scripts": "3.4.1", "redux": "^4.0.5", "redux-thunk": "^2.3.0", "reselect": "^4.0.0", "rxjs": "^6.6.0", "eslint": "^6", "eslint-config-airbnb": "^18.2.1", "eslint-config-prettier": "^6.11.0", "eslint-config-standard": "^14.1.1", "eslint-config-standard-react": "^9.2.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jest": "^23.20.0", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-react": "^7.21.5", "eslint-plugin-react-hooks": "^4.2.0", "eslint-plugin-standard": "^4.0.1", "lint-staged": "^10.2.11", "prettier": "^2.0.5" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "test:debug": "react-scripts test", "eject": "react-scripts eject", "lint": "./node_modules/.bin/eslint src" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "./src/*.{js,jsx,ts,tsx}": [ "npx prettier --write", "eslint src/*.js --fix-dry-run" ] } }