From 40805f39f7b7ccc32c650e8bd8a20a88841231b3 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 28 Nov 2025 11:44:26 +0100 Subject: [PATCH] Update dependencies and adjust TypeScript JSX setting Upgraded multiple dependencies and devDependencies in package.json to their latest versions for improved stability and features. Changed the TypeScript 'jsx' compiler option from 'react-jsx' to 'preserve' in tsconfig.json to better align with project requirements. --- package.json | 60 +++++++++++++++++++++++++-------------------------- tsconfig.json | 2 +- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/package.json b/package.json index 5626c1f..8f6ae88 100644 --- a/package.json +++ b/package.json @@ -22,71 +22,71 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@prisma/client": "^6.19.0", + "@prisma/client": "^7.0.1", "@radix-ui/react-dropdown-menu": "^2.1.16", - "@radix-ui/react-slot": "^1.2.3", + "@radix-ui/react-slot": "^1.2.4", "@t3-oss/env-nextjs": "^0.13.8", "@tailwindcss/typography": "^0.5.19", - "@tanstack/react-query": "^5.90.5", - "@trpc/client": "^11.6.0", - "@trpc/react-query": "^11.6.0", - "@trpc/server": "^11.6.0", + "@tanstack/react-query": "^5.90.11", + "@trpc/client": "^11.7.2", + "@trpc/react-query": "^11.7.2", + "@trpc/server": "^11.7.2", "@types/react-syntax-highlighter": "^15.5.13", "@types/ws": "^8.18.1", "@xterm/addon-fit": "^0.10.0", "@xterm/addon-web-links": "^0.11.0", "@xterm/xterm": "^5.5.0", - "axios": "^1.7.9", - "bcryptjs": "^3.0.2", + "axios": "^1.13.2", + "bcryptjs": "^3.0.3", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", - "cron-validator": "^1.2.0", + "cron-validator": "^1.4.0", "dotenv": "^17.2.3", "jsonwebtoken": "^9.0.2", - "lucide-react": "^0.554.0", - "next": "^16.0.4", + "lucide-react": "^0.555.0", + "next": "^16.0.5", "node-cron": "^4.2.1", "node-pty": "^1.0.0", - "react": "^19.0.0", - "react-dom": "^19.0.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", "react-markdown": "^10.1.0", "react-syntax-highlighter": "^16.1.0", "refractor": "^5.0.0", "remark-gfm": "^4.0.1", "server-only": "^0.0.1", "strip-ansi": "^7.1.2", - "superjson": "^2.2.3", - "tailwind-merge": "^3.3.1", + "superjson": "^2.2.6", + "tailwind-merge": "^3.4.0", "ws": "^8.18.3", - "zod": "^4.1.12" + "zod": "^4.1.13" }, "devDependencies": { "@eslint/eslintrc": "^3.3.1", - "@tailwindcss/postcss": "^4.1.16", + "@tailwindcss/postcss": "^4.1.17", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", "@types/bcryptjs": "^3.0.0", - "@types/better-sqlite3": "^7.6.8", + "@types/better-sqlite3": "^7.6.13", "@types/jsonwebtoken": "^9.0.10", "@types/node": "^24.10.1", "@types/node-cron": "^3.0.11", - "@types/react": "^19.2.4", - "@types/react-dom": "^19.2.2", - "@vitejs/plugin-react": "^5.1.0", - "@vitest/coverage-v8": "^4.0.13", - "@vitest/ui": "^4.0.13", + "@types/react": "^19.2.7", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^5.1.1", + "@vitest/coverage-v8": "^4.0.14", + "@vitest/ui": "^4.0.14", "eslint": "^9.39.1", - "eslint-config-next": "^16.0.4", + "eslint-config-next": "^16.0.5", "jsdom": "^27.2.0", - "postcss": "^8.5.3", - "prettier": "^3.5.3", + "postcss": "^8.5.6", + "prettier": "^3.7.1", "prettier-plugin-tailwindcss": "^0.7.1", - "prisma": "^6.19.0", + "prisma": "^7.0.1", "tailwindcss": "^4.1.17", - "typescript": "^5.8.2", - "typescript-eslint": "^8.46.2", - "vitest": "^4.0.13" + "typescript": "^5.9.3", + "typescript-eslint": "^8.48.0", + "vitest": "^4.0.14" }, "ct3aMetadata": { "initVersion": "7.39.3" diff --git a/tsconfig.json b/tsconfig.json index ebfdd44..7b62e00 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,7 +22,7 @@ "noEmit": true, "module": "ESNext", "moduleResolution": "Bundler", - "jsx": "react-jsx", + "jsx": "preserve", "plugins": [ { "name": "next"