File size: 410 Bytes
273a5e1
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "name": "rag-system",
    "version": "1.0.0",
    "description": "RAG Q&A System",
    "scripts": {
        "start-backend": "nodemon --exec python api.py --ext py",
        "start-frontend": "cd frontend && npm start",
        "dev": "concurrently \"npm run start-backend\" \"npm run start-frontend\""
    },
    "devDependencies": {
        "nodemon": "^3.0.3",
        "concurrently": "^8.2.2"
    }
}