Spaces:
Running
Running
{ | |
"name": "pubmed-ai-explorer", | |
"version": "1.0.0", | |
"description": "Web app to explore AI algorithms used in medical papers on PubMed", | |
"scripts": { | |
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"", | |
"dev:backend": "cd backend && npm run dev", | |
"dev:frontend": "cd frontend && npm run dev", | |
"build": "cd frontend && npm run build", | |
"start": "cd backend && npm start", | |
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install", | |
"docker:build": "docker build -t pubmed-ai-explorer .", | |
"docker:run": "docker run -p 3001:3001 pubmed-ai-explorer", | |
"docker:up": "docker-compose up", | |
"docker:down": "docker-compose down", | |
"docker:dev": "docker-compose --profile dev up" | |
}, | |
"devDependencies": { | |
"concurrently": "^8.2.2" | |
} | |
} |