# package.json

> 

Your app package usually contains:

- the `dev`, `prepare`, `build`, and `start` scripts
- runtime dependencies
- TypeScript and Vite dependencies

Typical scripts:

```json
{
  "scripts": {
    "dev": "vuloom dev",
    "prepare": "vuloom prepare",
    "build": "vuloom build",
    "start": "vuloom start"
  }
}
```

Vuloom keeps the default workflow script-driven. You do not need to maintain separate client and server bootstrap scripts.
