From 6e6575bf02d52394ab5eb4780a09b95d6c35ac9f Mon Sep 17 00:00:00 2001 From: baslani Date: Mon, 13 Apr 2026 13:47:45 +0330 Subject: [PATCH] installed packages --- package.json | 24 +++++++++++++++++++++++- tsconfig.json | 28 ++++++++++++++++++++++------ 2 files changed, 45 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index c4ec887..fc7cf08 100644 --- a/package.json +++ b/package.json @@ -7,9 +7,31 @@ "start": "next start" }, "dependencies": { + "@types/js-cookie": "^3.0.6", + "axios": "^1.15.0", + "clsx": "^2.1.1", + "date-fns": "^4.1.0", + "date-fns-jalali": "4.1.0-0", + "embla-carousel": "^8.6.0", + "embla-carousel-autoplay": "^8.6.0", + "embla-carousel-react": "^8.6.0", + "framer-motion": "^12.38.0", + "js-cookie": "^3.0.5", "next": "16.1.6", + "next-intl": "^4.9.1", + "next-pwa": "^5.6.0", + "next-sitemap": "^4.2.3", + "next-themes": "^0.4.6", + "nextjs-toploader": "^3.9.17", + "prettier": "^3.8.2", + "prettier-plugin-tailwindcss": "^0.7.2", "react": "19.2.4", - "react-dom": "19.2.4" + "react-dom": "19.2.4", + "react-hook-form": "^7.72.1", + "react-hot-toast": "^2.6.0", + "tailwind-merge": "^3.5.0", + "tailwind-scrollbar": "^4.0.2", + "zustand": "^5.0.12" }, "devDependencies": { "@tailwindcss/postcss": "^4.1.18", diff --git a/tsconfig.json b/tsconfig.json index 2401a0e..95113d6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,11 @@ { "compilerOptions": { "target": "ES2017", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -11,7 +15,7 @@ "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "preserve", + "jsx": "react-jsx", "incremental": true, "plugins": [ { @@ -19,10 +23,22 @@ } ], "paths": { - "@/*": ["./src/*"], - "&/*": ["./public/*"] + "@/*": [ + "./src/*" + ], + "&/*": [ + "./public/*" + ] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ] }