dassbot / package.json
brianhuster's picture
Deploy DASS-21 app to Hugging Face Space
a3ee1b6
Raw
History Blame Contribute Delete
734 Bytes
{
"name": "dass21-screening-app",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -k \"uv run uvicorn app:app --host 127.0.0.1 --port 3001\" \"vite\"",
"dev:client": "vite",
"dev:server": "uv run uvicorn app:app --host 127.0.0.1 --port 3001",
"build": "tsc -b && vite build",
"preview": "vite preview",
"start": "uv run uvicorn app:app --host 127.0.0.1 --port 3001"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.8",
"@vitejs/plugin-react": "^5.0.1",
"concurrently": "^9.2.1",
"typescript": "^5.8.3",
"vite": "^7.0.4"
}
}