Files
Homarr/tooling/eslint/package.json

36 lines
967 B
JSON
Raw Normal View History

2023-12-08 22:35:15 +01:00
{
"name": "@homarr/eslint-config",
2023-12-08 22:35:15 +01:00
"version": "0.2.0",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
"./base": "./base.js",
"./nextjs": "./nextjs.js",
"./react": "./react.js"
},
2023-12-08 22:35:15 +01:00
"scripts": {
"clean": "rm -rf .turbo node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
2023-12-08 22:35:15 +01:00
"typecheck": "tsc --noEmit"
},
"prettier": "@homarr/prettier-config",
2023-12-08 22:35:15 +01:00
"dependencies": {
"@next/eslint-plugin-next": "^14.2.22",
2023-12-08 22:35:15 +01:00
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.3.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"typescript-eslint": "^8.19.0"
2023-12-08 22:35:15 +01:00
},
"devDependencies": {
"@homarr/prettier-config": "workspace:^0.1.0",
"@homarr/tsconfig": "workspace:^0.1.0",
"eslint": "^9.17.0",
"typescript": "^5.7.2"
}
}