Files
LagerFastApi/fastapi_demo/package.json
2026-02-12 18:58:48 +01:00

14 lines
492 B
JSON

{
"name": "fastapi-vue-dev",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "concurrently -n api,web \"python -m uvicorn fastapi_demo.app.main:app --reload --host 127.0.0.1 --port 8000\" \"npm --prefix frontend run dev\"",
"gen:api": "npm --prefix frontend run gen:api",
"build": "npm --prefix frontend run build",
"preview": "npm --prefix frontend run preview"
},
"devDependencies": {
"concurrently": "^9.0.0"
}
}