-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.88 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
{
"name": "nutritrace",
"version": "1.0.5",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"android": "npm run build && npx cap sync android && npx cap open android",
"android:build": "npm run build && npx cap sync android",
"android:run": "npx cap run android",
"cap:sync": "npm run build && npx cap sync",
"cap:add:android": "npx cap add android",
"i18n:check": "node scripts/i18n-check.cjs",
"test": "node --test scripts/*.test.js",
"postinstall": "node scripts/postinstall.cjs"
},
"dependencies": {
"@aparajita/capacitor-biometric-auth": "^10.0.0",
"@capacitor-community/speech-recognition": "^7.0.1",
"@capacitor-community/sqlite": "^8.1.0",
"@capacitor-mlkit/barcode-scanning": "^8.0.1",
"@capacitor/android": "^8.3.0",
"@capacitor/app": "^8.1.0",
"@capacitor/browser": "^8.0.3",
"@capacitor/camera": "^8.0.2",
"@capacitor/core": "^8.3.0",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/haptics": "^8.0.2",
"@capacitor/keyboard": "^8.0.2",
"@capacitor/local-notifications": "^8.0.2",
"@capacitor/share": "^8.0.1",
"@capacitor/splash-screen": "^8.0.1",
"@capacitor/status-bar": "^8.0.2",
"@devmaxime/capacitor-health-connect": "^1.1.0",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"chart.js": "^4.4.0",
"emoji-picker-element": "^1.29.1",
"jszip": "^3.10.1",
"nodemailer": "^9.0.3",
"svelte-i18n": "^4.0.1",
"svelte-spa-router": "^4.0.1"
},
"devDependencies": {
"@capacitor/cli": "^8.3.0",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"svelte": "^5.55.9",
"typescript": "^6.0.2",
"vite": "^6.4.3",
"vite-plugin-pwa": "^1.0.3",
"workbox-window": "^7.0.0"
},
"overrides": {
"esbuild": "^0.25.0"
}
}