Skip to content

Instantly share code, notes, and snippets.

@niallobrien
Created January 25, 2022 12:36
Show Gist options
  • Save niallobrien/696fffee84af117134d20c7f3e0374da to your computer and use it in GitHub Desktop.
Save niallobrien/696fffee84af117134d20c7f3e0374da to your computer and use it in GitHub Desktop.
{
"plugins": [
"react",
"prettier"
],
"extends": [
"airbnb",
"react-app",
"prettier"
],
"rules": {
"no-param-reassign": 0,
"react/jsx-props-no-spreading": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/jsx-max-props-per-line": [
2,
{
"maximum": 4,
"when": "always"
}
],
"import/prefer-default-export": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"semi": false
}
],
"react/jsx-filename-extension": [
"warn",
{
"extensions": [
".js",
".jsx"
]
}
]
},
"env": {
"browser": true,
"es2021": true,
"jest": true
}
}
{
"name": "excite-admin",
"version": "1.0.0",
"homepage": ".",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/primefaces/sakai-react.git"
},
"license": "MIT",
"dependencies": {
"@fullcalendar/core": "^5.7.2",
"@fullcalendar/daygrid": "^5.7.2",
"@fullcalendar/interaction": "^5.7.2",
"@fullcalendar/react": "^5.7.0",
"@fullcalendar/timegrid": "^5.7.2",
"@hookform/resolvers": "^2.8.8",
"axios": "^0.19.0",
"chart.js": "3.3.2",
"classnames": "^2.2.6",
"cross-env": "^7.0.3",
"primeflex": "3.1.0",
"primeicons": "^5.0.0",
"primereact": "7.1.0",
"prismjs": "1.9.0",
"react": "^17.0.1",
"react-app-polyfill": "^1.0.6",
"react-dom": "^17.0.1",
"react-hook-form": "^7.25.0",
"react-query": "^3.34.8",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-transition-group": "^4.4.1",
"sass": "^1.32.8",
"yup": "^0.32.11"
},
"scripts": {
"start": "cross-env PORT=3001 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint:eslint": "eslint . --ext .ts,.js,.tsx,.jsx",
"lint:eslint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment