-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.38 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
{
"name": "setil",
"private": true,
"version": "1.6.1",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "npm run dev:web-full",
"dev:web": "vite --mode web",
"dev:web-full": "vercel dev",
"preview": "npm run preview:web-full",
"preview:web": "vite preview --mode web",
"preview:web-full": "vercel",
"check": "vue-tsc -b",
"build": "npm run build:web",
"build:web": "npm run check && vite build --mode web",
"build:android": "npm run check && vite build --mode android",
"build-dev:android": "vite build --mode android",
"android:run": "npm run build-dev:android && cap sync android && cap run android",
"android:assemble-debug": "npm run build-dev:android && cap sync android && cd android && gradlew assembleDebug",
"android:assemble-release": "npm run build:android && cap sync android && cd android && gradlew assembleRelease",
"android:bundle": "npm run build:android && cap sync android && cd android && gradlew bundleRelease"
},
"dependencies": {
"@capacitor-firebase/authentication": "^8.4.0",
"@capacitor/android": "^8.5.0",
"@capacitor/app": "^8.1.1",
"@capacitor/camera": "^8.2.3",
"@capacitor/core": "^8.5.0",
"@capacitor/device": "^8.0.3",
"@capacitor/push-notifications": "^8.1.2",
"@capacitor/share": "^8.0.1",
"@internationalized/date": "^3.12.3",
"@lucide/vue": "^1.37.0",
"@sindresorhus/fnv1a": "^3.1.0",
"@vee-validate/zod": "^4.15.1",
"@vueuse/core": "^14.4.0",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.11.0",
"clsx": "^2.1.1",
"firebase": "^12.17.1",
"firebase-admin": "^14.1.0",
"reka-ui": "^2.10.4",
"tailwind-merge": "^3.6.0",
"vee-validate": "^4.15.1",
"vue": "^3.5.42",
"vue-advanced-cropper": "^2.8.9",
"vue-router": "^5.3.0",
"vue-sonner": "^2.0.9",
"vue3-google-signin": "^2.1.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@capacitor/cli": "^8.5.0",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^24.13.3",
"@vercel/config": "^0.7.0",
"@vercel/node": "^10.0.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/tsconfig": "^0.9.1",
"shadcn-vue": "^2.8.2",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vercel": "^59.10.0",
"vite": "^8.2.1",
"vite-plugin-pwa": "^1.3.0",
"vue-tsc": "^3.3.11",
"workbox-core": "^7.4.1",
"workbox-precaching": "^7.4.1"
},
"overrides": {
"firebase-admin": {
"jose": "^5.10.0"
}
}
}