CoolFace
Apppublic

Risksray/anxiety-attack-detection-support-platform

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
package.json40 linesDownload Raw Back to root
1```json2{3  "name": "anxiety-attack-detection",4  "version": "0.1.0",5  "private": true,6  "scripts": {7    "dev": "next dev",8    "build": "next build",9    "start": "next start",10    "lint": "next lint"11  },12  "dependencies": {13    "next": "^14.0.0",14    "react": "^18.2.0",15    "react-dom": "^18.2.0",16    "tailwindcss": "^3.3.0",17    "@tanstack/react-query": "^4.29.0",18    "axios": "^1.3.0",19    "next-auth": "^4.22.0",20    "zod": "^3.21.0",21    "recharts": "^2.4.0",22    "@radix-ui/react-slot": "^1.0.0",23    "class-variance-authority": "^0.7.0",24    "clsx": "^2.0.0",25    "lucide-react": "^0.264.0",26    "tailwind-merge": "^1.13.0",27    "tailwindcss-animate": "^1.0.0"28  },29  "devDependencies": {30    "@types/node": "^20.0.0",31    "@types/react": "^18.2.0",32    "@types/react-dom": "^18.2.0",33    "autoprefixer": "^10.4.0",34    "eslint": "^8.0.0",35    "eslint-config-next": "14.0.0",36    "postcss": "^8.4.0",37    "typescript": "^5.0.0"38  }39}40```