-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "agent-management-system",
"version": "1.0.0",
"description": "B2B SaaS platform for enterprise AI agent fleet management and observability",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && uvicorn main:app --reload --host 0.0.0.0 --port 8000",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && python -m build",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && pytest",
"test:frontend": "cd frontend && npm test",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"setup": "npm install && cd frontend && npm install && cd ../backend && pip install -r requirements.txt"
},
"keywords": [
"ai",
"agents",
"saas",
"observability",
"agent-management",
"devops",
"enterprise"
],
"author": "Agent Management System Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jaydubya818/Agent_Management_System.git"
},
"bugs": {
"url": "https://github.com/jaydubya818/Agent_Management_System/issues"
},
"homepage": "https://github.com/jaydubya818/Agent_Management_System#readme"
}