fix(security): Fix CVE-2025-66478

This commit is contained in:
Félix MARQUET
2025-12-08 09:55:31 +00:00
parent b04037c676
commit 69851a3731
4 changed files with 428 additions and 347 deletions

View File

@@ -0,0 +1,13 @@
{
"name": "Node.js 24 & pnpm",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"nodeGypDependencies": true,
"installYarnUsingApt": true,
"version": "lts",
"pnpmVersion": "latest",
"nvmVersion": "latest"
}
}
}

View File

@@ -18,45 +18,45 @@
"@prisma/client": "6.17.1",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-slot": "^1.2.4",
"@types/bcrypt": "^6.0.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-writer": "^1.6.0",
"date-fns": "^4.1.0",
"exceljs": "^4.4.0",
"lucide-react": "^0.546.0",
"mime-types": "^3.0.1",
"next": "16.0.0",
"next-auth": "^4.24.11",
"mime-types": "^3.0.2",
"next": "16.0.7",
"next-auth": "^4.24.13",
"next-themes": "^0.4.6",
"prisma": "6.17.1",
"react": "19.2.0",
"react-day-picker": "^9.11.1",
"react-day-picker": "^9.12.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.65.0",
"react-hook-form": "^7.68.0",
"rimraf": "^6.1.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwind-merge": "^3.4.0",
"uuid": "^13.0.0",
"zod": "^4.1.12"
"zod": "^4.1.13"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/postcss": "^4.1.17",
"@types/mime-types": "^3.0.1",
"@types/node": "^24",
"@types/node": "^24.10.1",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"cypress": "^15.5.0",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"cypress": "^15.7.1",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {

713
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -19,7 +23,9 @@
}
],
"paths": {
"@/*": ["./*"]
"@/*": [
"./*"
]
}
},
"include": [
@@ -28,7 +34,10 @@
"**/*.tsx",
".next/types/**/*.ts",
".next\\dev/types/**/*.ts",
".next\\dev/types/**/*.ts"
".next\\dev/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}