-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.38 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "control-tower",
"version": "0.2.0",
"description": "Web dashboard to orchestrate RedEye autonomous dev sessions across multiple projects. Local-only, binds to 127.0.0.1.",
"private": true,
"license": "MIT",
"author": {
"name": "Bitmia-ai",
"email": "dev@bitmia.ai",
"url": "https://github.com/Bitmia-ai"
},
"homepage": "https://github.com/Bitmia-ai/ControlTower",
"repository": {
"type": "git",
"url": "https://github.com/Bitmia-ai/ControlTower.git"
},
"bugs": {
"url": "https://github.com/Bitmia-ai/ControlTower/issues"
},
"keywords": [
"redeye",
"claude-code",
"autonomous",
"dashboard",
"orchestration",
"nextjs"
],
"bin": {
"control-tower": "bin/control-tower.mjs",
"ct-init": "bin/ct-init.mjs"
},
"files": [
"app/",
"components/",
"lib/",
"public/",
"scripts/",
"bin/",
"proxy.ts",
"next.config.ts",
"next-env.d.ts",
"postcss.config.mjs",
"tailwind.config.ts",
"tsconfig.json",
"package-lock.json",
"LICENSE",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"SECURITY.md"
],
"scripts": {
"dev": "next dev --webpack --hostname 127.0.0.1 --port 3200",
"build": "next build",
"start": "next start --hostname 127.0.0.1 --port 3200",
"postinstall": "node scripts/patch-next.mjs",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"e2e": "playwright test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-switch": "^1.2.6",
"@tailwindcss/typography": "^0.5.19",
"lucide-react": "^1.14.0",
"next": "16.2.4",
"next-themes": "^0.4.6",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.5",
"happy-dom": "^20.9.0",
"tailwindcss": "^4",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"overrides": {
"postcss": "^8.5.10"
}
}