IndieShip

packages.json and hooks

WIP

Scripts

1. "dev": "vite dev --port 3000",
  - Start dev server

2. "dev:convex": "convex dev",
  - Start convex dev server

3. "dash:convex": "convex dashboard",
  - Open convex dashboard from the terminal

4. "deploy:dev": "netlify deploy",
  - Deploy to netlify dev server
  
5. "deploy:prod": "netlify deploy --prod",
  - Deploy to netlify prod server

6. "deploy:convex": "convex deploy",
  - Deploy to convex prod server

7. "husky": "husky",
  - Initialize husky

8. "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

Hooks

On this page