Files
myeasycms-v2/tooling/tailwind/package.json
giancarlo cad729670f Update dependencies and import dynamic method
This commit updates multiple dependencies in the pnpm-lock.yaml file and imports the dynamic method from 'next/dynamic' in the site-header-account-section.tsx file. These updates are part of routine maintenance and improvement of the codebase. The import allows for dynamic imports, which can enhance performance.
2024-04-16 20:56:18 +08:00

38 lines
835 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",
"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"
}