Upgrade Prisma to v7

This commit is contained in:
Esdras Renan 2025-11-19 13:24:08 -03:00
parent 54343f61d5
commit 307a291c71
54 changed files with 34750 additions and 243 deletions

View file

@ -1,6 +1,7 @@
{
"name": "web",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"prebuild": "prisma generate",
@ -15,7 +16,7 @@
"test": "bun test",
"test:browser": "cross-env VITEST_BROWSER=true bunx vitest --run --browser.headless tests/browser/example.browser.test.ts --passWithNoTests",
"test:all": "cross-env VITEST_BROWSER=true bunx vitest --run --passWithNoTests",
"auth:seed": "node scripts/seed-auth.mjs",
"auth:seed": "tsx scripts/seed-auth.mjs",
"queues:ensure": "node scripts/ensure-default-queues.mjs",
"desktop:dev": "bun run --cwd apps/desktop tauri dev",
"desktop:build": "bun run --cwd apps/desktop tauri build",
@ -31,8 +32,9 @@
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.10.0",
"@noble/hashes": "^1.5.0",
"@prisma/adapter-better-sqlite3": "^7.0.0",
"@paper-design/shaders-react": "^0.0.55",
"@prisma/client": "6.19.0",
"@prisma/client": "^7.0.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
@ -60,6 +62,7 @@
"@tiptap/starter-kit": "^3.10.0",
"@tiptap/suggestion": "^3.10.0",
"better-auth": "^1.3.26",
"better-sqlite3": "^12.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.29.2",
@ -98,19 +101,19 @@
"@types/sanitize-html": "^2.16.0",
"@types/three": "^0.180.0",
"@vitest/browser-playwright": "^4.0.1",
"better-sqlite3": "^12.4.1",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "^16.0.3",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^27.0.1",
"playwright": "^1.56.1",
"prisma": "6.19.0",
"prisma": "^7.0.0",
"tailwindcss": "^4",
"tsconfig-paths": "^4.2.0",
"tw-animate-css": "^1.3.8",
"typescript": "^5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.2",
"tsx": "^4.19.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.1"
},