File size: 710 Bytes
0c8a381 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {
"name": "graph-rag",
"version": "1.0.0",
"description": "Agentic Graph RAG Application",
"private": true,
"scripts": {
"rag": "concurrently -k -p \"[{name}]\" -n \"SERVER,WORKER,FRONTEND\" -c \"magenta,blue,cyan\" \"npm run run:server\" \"npm run run:worker\" \"npm run run:frontend\"",
"run:server": "uv run python main.py",
"run:worker": "uv run celery -A src.graph_rag_service.workers.celery_worker worker --loglevel=info --concurrency=4 --pool=threads",
"run:frontend": "npm --prefix frontend-react run dev",
"postinstall": "npm --prefix frontend-react install && uv sync && uv run playwright install chromium"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}
|