From 3e1ae99ab533b096d089116a3f5839c6b25a08e7 Mon Sep 17 00:00:00 2001 From: Nik L Date: Mon, 2 Mar 2026 09:44:13 -0500 Subject: [PATCH] feat: command to run front and backend --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 3fd9f3066..f6fc6f4a7 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,10 @@ "packageManager": "bun@1.3.10", "scripts": { "dev": "bun run --cwd packages/opencode --conditions=browser src/index.ts", + "dev:serve": "bun run --cwd packages/opencode --conditions=browser src/index.ts serve", "dev:desktop": "bun --cwd packages/desktop tauri dev", "dev:web": "bun --cwd packages/app dev", + "dev:all": "bun dev:serve & bun dev:web & wait", "typecheck": "bun turbo typecheck", "prepare": "husky", "random": "echo 'Random script'",