36 lines
983 B
JSON
36 lines
983 B
JSON
{
|
|
"name": "@acme/eslint-config",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./base": "./base.ts",
|
|
"./nextjs": "./nextjs.ts",
|
|
"./react": "./react.ts"
|
|
},
|
|
"scripts": {
|
|
"clean": "git clean -xdf .cache .turbo node_modules",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@eslint/compat": "^1.4.0",
|
|
"@eslint/js": "catalog:",
|
|
"@next/eslint-plugin-next": "^16.0.0",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-turbo": "^2.5.8",
|
|
"typescript-eslint": "^8.46.2"
|
|
},
|
|
"devDependencies": {
|
|
"@acme/prettier-config": "workspace:*",
|
|
"@acme/tsconfig": "workspace:*",
|
|
"@types/node": "catalog:",
|
|
"eslint": "catalog:",
|
|
"prettier": "catalog:",
|
|
"typescript": "catalog:"
|
|
},
|
|
"prettier": "@acme/prettier-config"
|
|
}
|