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.
39 lines
857 B
JSON
39 lines
857 B
JSON
{
|
|
"name": "@kit/tailwind-config",
|
|
"version": "0.1.0",
|
|
"main": "index.ts",
|
|
"license": "MIT",
|
|
"files": [
|
|
"index.ts",
|
|
"postcss.js"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check \"**/*.{js,ts,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"autoprefixer": "^10.4.19",
|
|
"next": "14.2.3",
|
|
"postcss": "8.4.38",
|
|
"tailwindcss": "3.4.3",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:^",
|
|
"@kit/prettier-config": "workspace:^",
|
|
"@kit/tsconfig": "workspace:^",
|
|
"eslint": "^8.57.0",
|
|
"prettier": "^3.2.5",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|