See docs/getting-started.md for the authoritative versions. In short:
- Bun
1.3.x - Node.js
>=24
These match the root package.json scripts.
| Command | Description |
|---|---|
bun run dev |
Start all workspaces in development mode |
bun run dev:apps |
Start app workspaces in development mode |
bun run dev:packages |
Start package workspaces in development mode |
bun run build |
Build all workspaces |
bun run clean |
Clean build artifacts |
bun run check |
Run Adamantite checks |
bun run fix |
Auto-fix issues with Adamantite |
bun run format |
Format code with Adamantite |
bun run typecheck |
Type-check all workspaces |
bun run test |
Run the test suite |
bun run docker:up |
Start local services |
bun run docker:down |
Stop local services |
bun run boundaries |
Generate dependency boundaries report |
If you want to run a command for a specific workspace, you can use the following syntax:
bun run <command> --filter <workspace>bun run bump:deps- Update dependencies interactivelybun run analyze- Detect unused dependencies and filesbun run check:monorepo- Validate monorepo rulesbun run fix:monorepo- Auto-fix monorepo issues
bun run init:setup- Initialize project and clean up template filesbun run init:add:app- Add an app workspacebun run init:add:package- Add a package workspacebun run init:update- Sync with template updatesbun run init:check- Check for template updatesbun run init:rename- Rename project and update references