- Migrated ESLint configuration from Next.js to SolidJS - Removed React-specific ESLint plugins - Updated Turbo configuration with global dependencies - Simplified Prisma scripts in API package - Added shared ESLint and TypeScript configs to web and API packages - Cleaned up unnecessary dependencies and configurations
19 lines
439 B
JSON
19 lines
439 B
JSON
{
|
|
"name": "@repo/eslint-config",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"exports": {
|
|
"./base": "./base.js",
|
|
"./solid-js": "./solid.js"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.21.0",
|
|
"@typescript-eslint/parser": "^8.26.0",
|
|
"eslint": "^9.21.0",
|
|
"eslint-plugin-solid": "^0.14.5",
|
|
"eslint-plugin-turbo": "^2.4.4",
|
|
"typescript": "^5.8.2",
|
|
"typescript-eslint": "^8.26.0"
|
|
}
|
|
}
|