1. "dev": "vite dev --port 3000", - Start dev server2. "dev:convex": "convex dev", - Start convex dev server3. "dash:convex": "convex dashboard", - Open convex dashboard from the terminal4. "deploy:dev": "netlify deploy", - Deploy to netlify dev server5. "deploy:prod": "netlify deploy --prod", - Deploy to netlify prod server6. "deploy:convex": "convex deploy", - Deploy to convex prod server7. "husky": "husky", - Initialize husky8. "format": "biome format", - Format code - If you want to fix formatting errors automatically, run `bun run format --write`9. "lint": "biome lint", - Lint code - If you want to fix linting errors automatically, run `bun run lint --write`10. "check": "biome check" - Check code for linting and formatting errors