Remove unused dependencies from multiple packages

Unused dependencies were removed from the `typescript`, `prettier`, `tailwind`, and `eslint` packages. Updating the `package.json` files for these packages should improve build time and reduce the project's overall disk usage.
This commit is contained in:
giancarlo
2024-05-06 13:50:43 +07:00
parent b8f00f0a2d
commit d9250510f4
4 changed files with 4 additions and 19 deletions

View File

@@ -14,7 +14,6 @@
}, },
"dependencies": { "dependencies": {
"@next/eslint-plugin-next": "^14.2.3", "@next/eslint-plugin-next": "^14.2.3",
"@tanstack/react-table": "^8.16.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0", "@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^8.56.10", "@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^7.8.0", "@typescript-eslint/eslint-plugin": "^7.8.0",
@@ -23,10 +22,7 @@
"eslint-config-turbo": "^1.13.3", "eslint-config-turbo": "^1.13.3",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1", "eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-react-hooks": "^4.6.2"
"next": "14.2.3",
"tailwind-merge": "^2.3.0",
"zod": "^3.23.6"
}, },
"devDependencies": { "devDependencies": {
"@kit/prettier-config": "workspace:^", "@kit/prettier-config": "workspace:^",

View File

@@ -13,9 +13,7 @@
"@tanstack/react-table": "^8.16.0", "@tanstack/react-table": "^8.16.0",
"next": "14.2.3", "next": "14.2.3",
"prettier": "^3.2.5", "prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14", "prettier-plugin-tailwindcss": "^0.5.14"
"tailwind-merge": "^2.3.0",
"zod": "^3.23.6"
}, },
"devDependencies": { "devDependencies": {
"@kit/tsconfig": "workspace:^", "@kit/tsconfig": "workspace:^",

View File

@@ -14,14 +14,11 @@
"typecheck": "tsc --noEmit" "typecheck": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"@tanstack/react-table": "^8.16.0",
"autoprefixer": "^10.4.19", "autoprefixer": "^10.4.19",
"next": "14.2.3", "next": "14.2.3",
"postcss": "8.4.38", "postcss": "8.4.38",
"tailwind-merge": "^2.3.0",
"tailwindcss": "3.4.3", "tailwindcss": "3.4.3",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7"
"zod": "^3.23.6"
}, },
"devDependencies": { "devDependencies": {
"@kit/eslint-config": "workspace:^", "@kit/eslint-config": "workspace:^",

View File

@@ -4,11 +4,5 @@
"version": "0.1.0", "version": "0.1.0",
"files": [ "files": [
"base.json" "base.json"
], ]
"dependencies": {
"@tanstack/react-table": "^8.16.0",
"next": "14.2.3",
"tailwind-merge": "^2.3.0",
"zod": "^3.23.6"
}
} }