vue-fastapi/package.json

29 lines
823 B
JSON

{
"name": "nextjs-fastapi",
"version": "0.1.0",
"private": true,
"scripts": {
"fastapi-preinstall": "poetry install; echo 1",
"fastapi-dev": "poetry shell && python3 -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"dev": "concurrently \"pnpm run next-dev\" \"pnpm fastapi-preinstall\" \"pnpm run fastapi-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@types/node": "20.2.4",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"concurrently": "^8.0.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"next": "13.4.13",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
}
}