···14141515### Commands
16161717-- `bunx run tsc`: Check project TypeScript types
1818-- `bun run fmt`: Foramt with oxfmt
1919-- `bun run test`: Run unit tests
1717+- `bunx run check`: (or `vp check`) Check project lints, tpyes, format
1818+- `bun run test`: (or `vp test`) Run unit tests
2019- `bun run test:e2e`: Run end-to-end tests
21202221## Architecture
+1-4
package.json
···3434 "start": "NODE_ENV=production bun run packages/app/src/server.ts",
3535 "start:indexer": "bun run packages/indexer/src/main.ts",
3636 "preview": "bun run db:generate && bun run db:migrate && bun run build && bun run start",
3737- "tsc": "tsc --noEmit",
3838- "fmt": "vp fmt",
3939- "fmt:check": "vp fmt --check",
4040- "lint": "vp lint",
3737+ "check": "vp check",
4138 "test": "vp test run",
4239 "test:watch": "vp test",
4340 "test:e2e": "playwright test --config packages/app/e2e/playwright.config.ts"