Files
IPFS-portal/package.json
T
maikrolf c9432a16ba SIWE auth, API proxy fixes, dashboard, login, usage pages
- SIWE auth flow: challenge/login/logout/me API routes + JWT middleware
- Fixed [...path] catch-all: Kubo proxy with matchRoute() + mapToKuboAPI()
- Fixed session_id → nonce field mismatch in AuthProvider
- Fixed dashboard pins crash: Kubo returns {Keys: {...}}, not array
- Added middleware route guard (307 redirect to /login)
- Added login, register, profile, usage, upload pages
- Added dashboard components (StorageGauge, FreeTierProgress)
- Added SWR hooks + AuthGuard + Providers + Toast/ErrorBoundary
- Added payment integration (smart contract ABI, tiers, tokens)
- Fixed IPNS key listing: Name/Id → name/id mapping
- Added PWA support (manifest, service worker, icons)
- Added tests for helpers, limits, search-index, wallet
2026-06-28 18:31:05 +02:00

34 lines
842 B
JSON

{
"name": "@maos/ipfs-portal",
"version": "1.0.0",
"private": true,
"description": "IPFS Portal — Next.js frontend for remote IPFS node management",
"scripts": {
"dev": "next dev --port 3445",
"build": "next build",
"export": "next build && npx serve out"
},
"dependencies": {
"@maos/ipfs-portal": "file:",
"@tailwindcss/postcss": "^4.3.1",
"clsx": "^2.1.1",
"jose": "^6.2.3",
"lucide-react": "^0.577.0",
"next": "^16.2.7",
"postcss": "^8.5.15",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"swr": "^2.4.2",
"viem": "^2.29.0"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.0",
"vitest": "^4.1.9"
}
}