- Added TypeScript, @types/node, and zod dependencies with specific versions to ensure compatibility across applications. - Standardized dependency versions in package.json files for BFF, Portal, and Domain applications to maintain consistency. - Removed outdated dependency specifications to streamline package management.
47 lines
1.4 KiB
JSON
47 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",
|
|
"tw-animate-css": "^1.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/node": "24.10.3",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"tailwindcss": "^4.1.17",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|