Assist_Design/apps/portal/package.json
barsa 424f257bd7 Update package dependencies and refactor authentication module
- Added sharp dependency for image processing in package.json.
- Updated argon2 dependency version to 0.44.0 for enhanced security.
- Removed unused @nestjs/jwt dependency and refactored authentication module to utilize JoseJwtService for JWT handling.
- Adjusted type definitions for @types/node and @types/pg to ensure compatibility across applications.
- Cleaned up package.json files in BFF and Portal applications for consistency and improved dependency management.
2025-12-11 12:03:31 +09:00

45 lines
1.4 KiB
JSON

{
"name": "@customer-portal/portal",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "node ./scripts/dev-prep.mjs",
"dev": "next dev -p ${NEXT_PORT:-3000}",
"build": "next build",
"build:webpack": "next build --webpack",
"build:analyze": "ANALYZE=true next build",
"analyze": "pnpm run build:analyze",
"start": "next start -p ${NEXT_PORT:-3000}",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --project tsconfig.json --noEmit",
"type-check:watch": "tsc --project tsconfig.json --noEmit --watch",
"test": "echo 'No tests yet'",
"bundle-analyze": "pnpm run build:analyze && pnpm exec @next/bundle-analyzer"
},
"dependencies": {
"@customer-portal/domain": "workspace:*",
"@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.90.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"next": "16.0.8",
"react": "19.2.1",
"react-dom": "19.2.1",
"tailwind-merge": "^3.4.0",
"world-countries": "^5.1.0",
"zod": "4.1.13",
"zustand": "^5.0.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.0.8",
"@tailwindcss/postcss": "^4.1.17",
"@tanstack/react-query-devtools": "^5.91.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.1.17",
"typescript": "5.9.3"
}
}