-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.24 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.24 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
{
"name": "ops-dashboard",
"version": "0.1.0",
"description": "Agent-Driven Dynamic Ops Dashboard for tracking operational flywheel",
"private": true,
"scripts": {
"dev": "dotenv -e .env.local -- concurrently \"npm run dev:ui\" \"npm run dev:agent\" --names ui,agent --prefix-colors blue,green --kill-others",
"dev:debug": "LOG_LEVEL=debug npm run dev",
"dev:agent": "cd agent && dotenv -e ../.env.local python agent.py",
"dev:ui": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"install:agent": "cd agent && pip install -r requirements.txt"
},
"dependencies": {
"@ag-ui/agno": "^0.0.1",
"@ai-sdk/openai": "^1.3.22",
"@copilotkit/react-core": "^1.9.1",
"@copilotkit/react-ui": "^1.9.1",
"@copilotkit/runtime": "^1.9.1",
"next": "15.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.2",
"dotenv-cli": "^8.0.0",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}