-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 756 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "agentflow",
"version": "1.0.0",
"private": true,
"description": "Visual AI Agent Builder & Orchestration Platform",
"author": "DIYA73",
"license": "MIT",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev": "concurrently \"npm run start:dev --workspace=apps/api\" \"npm run dev --workspace=apps/web\"",
"build": "npm run build --workspace=packages/shared && npm run build --workspace=apps/api && npm run build --workspace=apps/web",
"test": "npm run test --workspaces --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"
}
}