{ "name": "vue-fastapi", "version": "0.1.0", "private": true, "scripts": { "fastapi-preinstall": "poetry install --no-root; echo 1", "fastapi-dev": "poetry shell && python3 -m uvicorn api.index:app --reload", "vue-dev": "vite", "dev": "concurrently \"pnpm run vue-dev\" \"pnpm fastapi-preinstall\" \"pnpm run fastapi-dev\"", "build": "run-p type-check build-only", "preview": "vite preview", "test:unit": "vitest", "test:e2e": "playwright test", "build-only": "vite build", "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", "format": "prettier --write app/" }, "dependencies": { "axios": "^1.4.0", "pinia": "^2.1.4", "vue": "^3.3.4", "vue-router": "^4.2.4" }, "devDependencies": { "typescript-vue-plugin": "^1.8.8", "@playwright/test": "^1.36.1", "@rushstack/eslint-patch": "^1.3.2", "@tsconfig/node18": "^18.2.0", "@types/jsdom": "^21.1.1", "@types/node": "^18.17.0", "@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue-jsx": "^3.0.1", "@vue/eslint-config-prettier": "^8.0.0", "@vue/eslint-config-typescript": "^11.0.3", "@vue/test-utils": "^2.4.1", "@vue/tsconfig": "^0.4.0", "autoprefixer": "10.4.14", "concurrently": "^8.0.1", "eslint": "^8.46.0", "eslint-plugin-vue": "^9.17.0", "jsdom": "^22.1.0", "npm-run-all": "^4.1.5", "postcss": "8.4.23", "prettier": "^3.0.0", "tailwindcss": "3.3.2", "typescript": "~5.1.6", "vite": "^4.4.6", "vitest": "^0.33.0", "vue-tsc": "^1.8.6" } }