-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.97 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "health-buddy-app",
"description": "A comprehensive health management application with AI-powered chat assistance, built with React, TypeScript, and OpenAI GPT-4 integration",
"private": true,
"type": "module",
"pkg": {
"assets": [
"dist/spa/*"
],
"scripts": [
"dist/server/**/*.js"
]
},
"scripts": {
"dev": "vite",
"dev:server": "tsx watch server/server.ts",
"dev:full": "concurrently \"npm run dev:server\" \"npm run dev\"",
"build": "vite build",
"build:pro": "vite build --mode production",
"build:server": "echo 'Server runs directly with tsx - no compilation needed'",
"start:server": "npx tsx server/server.ts",
"start:server:prod": "set NODE_ENV=production && npx tsx server/server.ts",
"preview": "vite preview",
"test": "vitest --run",
"format.fix": "prettier --write .",
"typecheck": "tsc",
"typecheck:server": "tsc --project tsconfig.server.json --noEmit",
"build:mobile": "npm run build && npx cap sync",
"android": "npx cap run android",
"ios": "npx cap run ios",
"android:dev": "npx cap run android --live-reload",
"ios:dev": "npx cap run ios --livereload --external"
},
"dependencies": {
"@capacitor/android": "^7.4.2",
"@capacitor/app": "^7.0.1",
"@capacitor/cli": "^7.4.2",
"@capacitor/core": "^7.4.2",
"@capacitor/device": "^7.0.2",
"@capacitor/haptics": "^7.0.1",
"@capacitor/ios": "^7.4.2",
"@capacitor/keyboard": "^7.0.1",
"@capacitor/motion": "^7.0.1",
"@capacitor/network": "^7.0.2",
"@capacitor/preferences": "^7.0.2",
"@capacitor/splash-screen": "^7.0.1",
"@capacitor/status-bar": "^7.0.1",
"@google/genai": "^1.14.0",
"@google/generative-ai": "^0.21.0",
"@lottiefiles/dotlottie-react": "^0.15.2",
"@react-oauth/google": "^0.12.2",
"@react-three/drei": "10.1.2",
"@types/multer": "^2.0.0",
"axios": "^1.11.0",
"bcryptjs": "^2.4.3",
"concurrently": "^8.2.2",
"dotenv": "^17.2.1",
"express": "^4.18.2",
"ffmpeg-concat": "^1.3.0",
"google-tts-api": "^2.0.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lottie-react": "^2.4.1",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"multer": "^2.0.2",
"openai": "^5.12.0",
"react-chat-bubble": "^0.8.7",
"react-webcam": "^7.2.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.1",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.4",
"@react-three/fiber": "^8.18.0",
"@swc/core": "^1.11.24",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.56.2",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.176.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"embla-carousel-react": "^8.3.0",
"framer-motion": "^12.6.2",
"globals": "^15.9.0",
"input-otp": "^1.2.4",
"lucide-react": "^0.462.0",
"next-themes": "^0.3.0",
"postcss": "^8.5.6",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-resizable-panels": "^2.1.3",
"react-router-dom": "^6.26.2",
"recharts": "^2.12.7",
"serverless-http": "^3.2.0",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.11",
"tailwindcss-animate": "^1.0.7",
"three": "^0.176.0",
"tsx": "^4.7.0",
"typescript": "^5.5.3",
"vaul": "^0.9.9",
"vite": "^6.2.2",
"vitest": "^3.1.4"
}
}