505a19e32f
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.1 to 9.26.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/v9.26.0/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.57.1...v9.26.0) --- updated-dependencies: - dependency-name: eslint dependency-version: 9.26.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "@nymproject/eslint-config-react-typescript",
|
|
"description": "Import the default eslint config for nym",
|
|
"version": "1.0.0",
|
|
"license": "Apache-2.0",
|
|
"main": "index.js",
|
|
"peerDependencies": {
|
|
"@typescript-eslint/eslint-plugin": ">= 5",
|
|
"@typescript-eslint/parser": ">= 5",
|
|
"eslint": ">= 8",
|
|
"eslint-config-airbnb": ">= 19",
|
|
"eslint-config-airbnb-typescript": ">= 16",
|
|
"eslint-config-prettier": ">= 8",
|
|
"eslint-import-resolver-root-import": ">= 1",
|
|
"eslint-plugin-import": ">= 2",
|
|
"eslint-plugin-jest": ">= 26.1.1",
|
|
"eslint-plugin-jsx-a11y": ">= 6",
|
|
"eslint-plugin-prettier": ">= 4",
|
|
"eslint-plugin-react": ">= 7",
|
|
"eslint-plugin-react-hooks": ">= 4",
|
|
"eslint-plugin-storybook": "*",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^9.26.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-import-resolver-root-import": "^1.0.4",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"eslint-plugin-jest": "^26.1.1",
|
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-react": "^7.29.2",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"prettier": "^2.8.7"
|
|
},
|
|
"eslintConfig": {
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": "error"
|
|
},
|
|
"root": true,
|
|
"env": {
|
|
"browser": false,
|
|
"es6": false,
|
|
"node": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint *.js",
|
|
"lint:fix": "eslint *.js --fix"
|
|
}
|
|
}
|