Files
myeasycms-v2/tooling/eslint/package.json
giancarlo eaa163935b Upgrade multiple dependencies
Updated several dependencies that mainly include '@manypkg/cli', '@supabase/supabase-js', 'edge-csrf', 'i18next', '@types/react', 'autoprefixer', 'supabase', and '@sentry/nextjs'. This is a general dependencies update for performance and security improvements, bug fixes, and newer features. The commit also includes changes to '@babel/types' inside dependencies of several packages.
2024-04-16 15:03:41 +08:00

41 lines
1.0 KiB
JSON

{
"name": "@kit/eslint-config",
"version": "0.2.0",
"private": true,
"license": "MIT",
"files": [
"./apps.js"
],
"scripts": {
"clean": "rm -rf .turbo node_modules",
"lint": "eslint .",
"format": "prettier --check \"**/*.{js,json}\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@next/eslint-plugin-next": "^14.2.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^8.56.9",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.13.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0"
},
"devDependencies": {
"@kit/prettier-config": "workspace:^",
"@kit/tsconfig": "workspace:^",
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"eslintConfig": {
"root": true,
"extends": [
"./apps.js"
]
},
"prettier": "@kit/prettier-config"
}