-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "agentflow",
"version": "1.0.0",
"private": true,
"description": "Visual AI Agent Builder & Orchestration Platform",
"author": "DIYA73",
"license": "MIT",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"build:shared": "npm run build --workspace=@agentflow/shared",
"dev": "npm run build:shared && concurrently \"npm run start:dev --workspace=@agentflow/api\" \"npm run dev --workspace=@agentflow/web\"",
"build": "npm run build:shared && npm run build --workspace=@agentflow/api && npm run build --workspace=@agentflow/web",
"test": "npm run test --workspace=@agentflow/shared && npm run test --workspace=@agentflow/api --if-present",
"lint": "npm run lint --workspaces --if-present",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.3.3"
}
}