This commit performs an update of the version numbers for several packages used across the project. Overall, this is part of a maintenance task to ensure the latest version of each package is used to gain performance improvements, bug fixes and new features where applicable.
41 lines
1.0 KiB
JSON
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.4",
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
"@types/eslint": "^8.56.10",
|
|
"@typescript-eslint/eslint-plugin": "^7.14.1",
|
|
"@typescript-eslint/parser": "^7.14.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-config-turbo": "^2.0.6",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-react": "^7.34.3",
|
|
"eslint-plugin-react-hooks": "^4.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/prettier-config": "workspace:^",
|
|
"@kit/tsconfig": "workspace:^",
|
|
"eslint": "^8.57.0",
|
|
"typescript": "^5.5.3"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"./apps.js"
|
|
]
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|