feat(frontend): finished login form with validation

This commit is contained in:
2025-02-21 09:16:07 -06:00
parent d939332499
commit 9719451580
25 changed files with 551 additions and 230 deletions

View File

@@ -4,18 +4,18 @@
"description": "",
"main": "index.ts",
"scripts": {
"dev": "dotenvx run -- bun run -r --parallel --aggregate-output dev",
"dev:all": "concurrently -n 'server,frontend' -c '#007755,#2f6da3' 'cd server && bun run dev' 'cd frontend && bun run dev'",
"dev": "concurrently -n 'server,frontend' -c '#007755,#2f6da3' 'cd server && bun run dev' 'cd frontend && bun run dev'",
"dev:server": "bun --env-file .env --watch server/index.ts",
"dev:ocme": "bun --env-file .env --watch ocme/index.ts",
"dev:frontend": "cd frontend && bunx --bun vite",
"build:server": "cd apps/server && bun build index.js --outdir ../../dist/server",
"build:ocme": "rimraf dist/ocme && cd apps/ocme && bun build index.js --outdir ../../dist/ocme",
"build:front": "cd frontend && rimraf frontend/dist && bun run build",
"start": "cd server && bun run --env-file ../.env ./index.js",
"start": "bun --env-file .env server/index.js",
"commit": "cz",
"clean": "rimraf dist/server",
"deploy": "standard-version --conventional-commits"
"deploy": "standard-version --conventional-commits",
"ui:add": "cd frontend && bun shadcn add "
},
"keywords": [],
"author": "",