-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1004 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "leetai-agent",
"version": "1.0.0",
"private": true,
"workspaces": ["dashboard", "backend", "ai-engine", "extension"],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:dashboard\" \"npm run dev:ai\"",
"dev:backend": "cd backend && npm run dev",
"dev:dashboard": "cd dashboard && npm run dev",
"dev:ai": "cd ai-engine && npm run dev",
"build": "npm run build:backend && npm run build:dashboard && npm run build:extension",
"build:backend": "cd backend && npm run build",
"build:dashboard": "cd dashboard && npm run build",
"build:extension": "cd extension && npm run build",
"install:all": "npm install && cd dashboard && npm install && cd ../backend && npm install && cd ../ai-engine && npm install && cd ../extension && npm install",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}