From 9317a82a2f8821562ecf2126b70c27fd1689905b Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Thu, 9 Nov 2023 18:08:04 +0300 Subject: [PATCH] apps/web: move tailwind packages to devDependencies --- apps/web/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index 9b3ae86..144aa45 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -9,17 +9,16 @@ "lint": "next lint" }, "dependencies": { - "@tailwindcss/forms": "^0.5.6", "next": "^14.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", - "tailwind-tints": "^1.1.0", "tsconfig": "*", "ui": "*", "wretch": "^2.7.0", "zod": "^3.22.4" }, "devDependencies": { + "@tailwindcss/forms": "^0.5.6", "@types/node": "^20.9.0", "@types/react": "^18.2.37", "@types/react-dom": "^18.2.15", @@ -27,6 +26,7 @@ "autoprefixer": "^10.4.16", "eslint": "^8.53.0", "postcss": "^8", + "tailwind-tints": "^1.1.0", "tailwindcss": "^3.3.5", "typescript": "^5.2.2" }