- Updated lockfileVersion in pnpm-lock.yaml for consistency. - Added framer-motion dependency to the portal for enhanced animation capabilities. - Updated image assets and made minor adjustments to global styles for improved UI consistency.
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"name": "@customer-portal/portal",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"predev": "node ./scripts/dev-prep.mjs",
|
|
"dev": "next dev --turbopack -p ${NEXT_PORT:-3000}",
|
|
"build": "next build",
|
|
"build:turbo": "next build",
|
|
"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.20",
|
|
"@xstate/react": "^6.0.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"framer-motion": "^12.35.0",
|
|
"geist": "^1.5.1",
|
|
"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",
|
|
"xstate": "^5.28.0",
|
|
"zod": "^4.3.6",
|
|
"zustand": "^5.0.11"
|
|
},
|
|
"devDependencies": {
|
|
"@next/bundle-analyzer": "^16.1.6",
|
|
"@tailwindcss/postcss": "^4.1.18",
|
|
"@tanstack/react-query-devtools": "^5.91.3",
|
|
"@types/react": "^19.2.10",
|
|
"@types/react-dom": "^19.2.3",
|
|
"tailwindcss": "^4.1.18",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|