Files
Nimbus/apps/web/package.json
David Bauch 8d3f45c9aa feat(db): update database schema and type definitions
- Add defaultProviderId to user table
- Added providerId to serrion table.
- Added databaseHooks for customFields
- Refactor account table with better type safety and indexes
- Standardize timestamp handling across all tables
- Reorganize provider type definitions
- Add new validation schemas for providers
- Updated all packages to latest: bun update --latest
2025-07-09 03:26:11 -04:00

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.1.11",
"@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.1.11",
"tw-animate-css": "^1.3.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@nimbus/eslint": "workspace:*",
"@nimbus/tsconfig": "workspace:*",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"typescript": "^5.8.3",
"eslint": "^9.30.1",
"eslint-config-next": "15.3.5",
"@eslint/eslintrc": "^3.3.1"
}
}