-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.1 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
{
"name": "gifts---couple-connection",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:frontend": "vite",
"dev:backend": "node backend/src/index.js",
"dev:full": "concurrently --kill-others-on-fail --names backend,frontend --prefix-colors cyan,magenta \"npm run dev:backend\" \"npm run dev:frontend\"",
"migrate:images": "node backend/scripts/migrateInlineMemoriesToStorage.js",
"start:backend": "node backend/src/index.js",
"build": "vite build",
"preview": "vite preview",
"check:text-encoding": "node scripts/check-text-encoding.mjs",
"build:mobile": "npm run build && npx cap sync android",
"android:sync": "npx cap sync android",
"android:open": "npx cap open android",
"android:apk": "npm run build:mobile && bash scripts/bootstrap-gradle-wrapper.sh && cd android && ./gradlew assembleDebug",
"android:sdk:setup": "bash scripts/setup-android-sdk.sh",
"android:keystore:create": "bash scripts/create-android-keystore.sh",
"android:apk:release": "npm run build:mobile && bash scripts/bootstrap-gradle-wrapper.sh && cd android && ./gradlew assembleOfficialRelease",
"android:bundle:release": "npm run build:mobile && bash scripts/bootstrap-gradle-wrapper.sh && cd android && ./gradlew bundleOfficialRelease"
},
"dependencies": {
"@capacitor/android": "^8.1.0",
"@capacitor/core": "^8.1.0",
"@supabase/supabase-js": "^2.95.3",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"bcryptjs": "^3.0.3",
"compression": "^1.8.1",
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"dayjs": "^1.11.19",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"express-rate-limit": "^7.5.1",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.563.0",
"nodemailer": "^8.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@capacitor/cli": "^7.5.0",
"@types/node": "^22.14.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.0.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}