mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
- Split validators/index.ts into separate files by domain (email, file, password, tag) - Moved related schemas and types to their respective modules - Updated imports to use the new module structure - Maintained all existing validation logic and types - Added multiSession plugin - Refactored useAuth.ts - Added SocialProvider for provider context
71 lines
2.3 KiB
JSON
71 lines
2.3 KiB
JSON
{
|
|
"name": "@nimbus/web",
|
|
"version": "0.0.5",
|
|
"type": "module",
|
|
"private": true,
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build && bash scripts/handle-nextjs-standalone-build.sh",
|
|
"start": "bun run .next/build-start-folder/apps/web/server.js",
|
|
"lint": "next lint",
|
|
"docker:build": "bun run build && docker build -t nimbus-web-manual .",
|
|
"docker:run": "source .env && docker run --name nimbus-web-manual --env-file .env -p $WEB_PORT:$WEB_PORT nimbus-web-manual:latest",
|
|
"docker:up": "bun run build && docker compose up -d",
|
|
"docker:down": "docker compose down",
|
|
"docker:remove": "docker compose down --rmi local -v",
|
|
"docker:reset": "bun run docker:remove && bun run docker:up",
|
|
"fly:secrets:stage": "flyctl secrets import --stage < .env",
|
|
"fly:deploy": "bun run build && bash ../../scripts/fly:deploy.sh web"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^5.1.1",
|
|
"@nimbus/auth": "workspace:*",
|
|
"@nimbus/shared": "workspace:*",
|
|
"@number-flow/react": "^0.5.10",
|
|
"@radix-ui/react-avatar": "^1.1.10",
|
|
"@radix-ui/react-checkbox": "^1.3.2",
|
|
"@radix-ui/react-collapsible": "^1.1.11",
|
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
"@radix-ui/react-label": "^2.1.7",
|
|
"@radix-ui/react-progress": "^1.1.7",
|
|
"@radix-ui/react-separator": "^1.1.7",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@radix-ui/react-tabs": "^1.1.12",
|
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
"@t3-oss/env-core": "^0.13.8",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@tanstack/react-query": "^5.81.5",
|
|
"axios": "^1.10.0",
|
|
"better-auth": "^1.2.12",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.525.0",
|
|
"motion": "^12.23.0",
|
|
"next": "15.3.5",
|
|
"next-themes": "^0.4.6",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-dropzone": "^14.3.8",
|
|
"react-hook-form": "^7.60.0",
|
|
"sonner": "^2.0.6",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tailwindcss": "^4",
|
|
"tw-animate-css": "^1.3.5",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@nimbus/eslint": "workspace:*",
|
|
"@nimbus/tsconfig": "workspace:*",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"typescript": "^5",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.3.5",
|
|
"@eslint/eslintrc": "^3"
|
|
}
|
|
}
|