You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
mirosociety/package.json

15 lines
458 B

{
"name": "mirosociety",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"backend": "cd backend && uvicorn app.main:app --reload --port 8000",
"frontend": "cd frontend && npm run dev",
"setup": "cd backend && pip install -e . && cd ../frontend && npm install",
"build": "cd frontend && npm run build"
},
"devDependencies": {
"concurrently": "^9.0.0"
}
}