chore: update dependencies and fix lint errors

- Update pnpm 10.25.0 → 10.28.2
- Update all packages to latest versions (Next.js, React, NestJS, Prisma, etc.)
- Fix 36 nested ternary lint errors (unicorn/no-nested-ternary)
- Add security overrides for lodash and hono transitive deps
- Change pinned versions to use caret (^) for auto-updates
- Update catalog versions (@types/node, typescript, zod)
- Resolve all 12 security vulnerabilities
This commit is contained in:
barsa 2026-02-03 18:46:51 +09:00
parent 70f65cedaa
commit 60849b59a8
4 changed files with 210 additions and 177 deletions

View File

@ -24,10 +24,10 @@
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.5.1",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"lucide-react": "^0.563.0",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.4.0",
"world-countries": "^5.1.0",
"zod": "^4.3.6",

View File

@ -7,7 +7,7 @@
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501",
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"scripts": {
"dev": "pnpm domain:build && ./scripts/dev/manage.sh apps",
"dev:all": "pnpm --filter @customer-portal/domain build && pnpm --parallel --filter @customer-portal/portal --filter @customer-portal/bff run dev",
@ -62,14 +62,14 @@
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.39.2",
"@next/eslint-plugin-next": "16.0.9",
"@next/eslint-plugin-next": "^16.1.6",
"@types/node": "catalog:",
"eslint": "^9.39.2",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sonarjs": "^3.0.6",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.5.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"knip": "^5.83.0",
"lint-staged": "^16.2.7",
@ -80,7 +80,9 @@
},
"pnpm": {
"overrides": {
"js-yaml": ">=4.1.1"
"js-yaml": ">=4.1.1",
"lodash": ">=4.17.23",
"hono": ">=4.11.7"
}
}
}

363
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@ packages:
- packages/*
catalog:
"@types/node": 24.10.3
typescript: 5.9.3
zod: 4.2.1
"@types/node": ^25.2.0
typescript: ^5.9.3
zod: ^4.3.6