Roo-Code/apps/roomote/package.json
Matt Rubens 17ce731867
Prototype of a Roomote tab (#147)
Co-authored-by: cte <cestreich@gmail.com>
Co-authored-by: Roomote <chris@roocode.com>
Co-authored-by: John Richmond <5629+jr@users.noreply.github.com>
2025-07-07 10:52:18 -07:00

44 lines
1.6 KiB
JSON

{
"name": "@roo-code-cloud/roomote",
"private": true,
"type": "module",
"scripts": {
"lint": "next lint --max-warnings 0",
"check-types": "tsc --noEmit",
"test": "dotenvx run -f ../../.env.test -- vitest",
"dev": "dotenvx run -f ../../.env.development -- next dev --turbopack --port 3001",
"build": "dotenvx run -f ../../.env.production -- next build",
"start": "dotenvx run -f ../../.env.production -- next start --port 3001",
"controller": "dotenvx run -f ../../.env.development -f ../../.env.keys -f ../../.env.local -- tsx src/lib/controller.ts",
"controller:production": "dotenvx run -f ../../.env.production -- tsx src/lib/controller.ts",
"worker": "dotenvx run -f ../../.env.development -- tsx src/lib/worker.ts",
"worker:production": "dotenvx run -f ../../.env.production -- tsx src/lib/worker.ts",
"clean": "rimraf .next .turbo"
},
"dependencies": {
"@roo-code-cloud/db": "workspace:^",
"@roo-code-cloud/env": "workspace:^",
"@roo-code-cloud/ipc": "workspace:^",
"@roo-code-cloud/job-auth": "workspace:^",
"@roo-code/types": "^1.30.0",
"bullmq": "^5.37.0",
"drizzle-orm": "^0.44.2",
"execa": "^9.6.0",
"ioredis": "^5.6.1",
"next": "^15.3.3",
"p-wait-for": "^5.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"simple-git": "^3.28.0",
"zod": "^3.25.41"
},
"devDependencies": {
"@roo-code-cloud/config-eslint": "workspace:^",
"@roo-code-cloud/config-typescript": "workspace:^",
"@types/node": "^22.15.20",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"tsx": "^4.19.3",
"vitest": "^3.2.3"
}
}