-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.79 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
{
"name": "nimbleco",
"version": "0.1.0",
"description": "Self-hosted agent orchestration platform",
"private": true,
"workspaces": [
"coordinator",
"agents/*",
"shared/*",
"dashboard"
],
"scripts": {
"dev": "./scripts/dev.sh",
"start": "./scripts/start.sh",
"restart": "npm run build && ./scripts/start.sh",
"stop": "pm2 stop pm2.config.js",
"logs": "pm2 logs",
"status": "pm2 list",
"setup": "./setup.sh",
"setup:bot": "node bin/setup-bot.js",
"build": "npm run build --workspace=shared/llm-adapters --workspace=shared/tools && npm run build --workspace=coordinator --workspace=agents/universal --workspace=dashboard",
"clean": "npm run clean --workspaces && rm -rf node_modules",
"dev:docker": "docker-compose up",
"dev:full": "docker-compose --profile full up",
"dev:monitoring": "docker-compose --profile monitoring up",
"coordinator": "cd coordinator && npm run dev",
"agent:universal": "cd agents/universal && npm run dev",
"task:create": "node scripts/create-task.js",
"db:migrate": "./scripts/run-migrations.sh",
"db:seed": "cd coordinator && npm run db:seed",
"test": "npm run test --workspaces",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"mark-failures": "ts-node scripts/mark-system-failures.ts"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"pm2": "^5.3.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {}
}