Files
myeasycms-v2/tooling/tailwind/package.json
Giancarlo Buomprisco 5b9285a575 Next.js 15 Update (#26)
* Update Next.js and React versions in all packages
* Replace onRedirect function with next/link in BillingSessionStatus, since it's no longer cached by default
* Remove unused revalidatePath import in billing return page, since it's no longer cached by default
* Add Turbopack module aliases to improve development server speed
* Converted new Dynamic APIs to be Promise-based
* Adjust mobile layout
* Use ENABLE_REACT_COMPILER to enable the React Compiler in Next.js 15
* Report Errors using the new onRequestError hook
2024-10-22 14:39:21 +08:00

38 lines
836 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.20",
"postcss": "8.4.47",
"tailwindcss": "3.4.14",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@kit/eslint-config": "workspace:^",
"@kit/prettier-config": "workspace:^",
"@kit/tsconfig": "workspace:^",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"eslintConfig": {
"root": true,
"extends": [
"@kit/eslint-config/base"
]
},
"prettier": "@kit/prettier-config"
}