Files
FarmaFinder/package.json
T
Ichitux ef5d33a595
Build & Push Docker Images / test-backend (push) Successful in 21s
Build & Push Docker Images / test-frontend (push) Successful in 22s
Build & Push Docker Images / build-backend (push) Successful in 17s
Build & Push Docker Images / build-frontend (push) Successful in 17s
fix(ios): align deployment target to 15.0 and link mlkit barcode pod
- All four IPHONEOS_DEPLOYMENT_TARGET entries in project.pbxproj bumped
  from 13.0 to 15.0 to match Podfile's 'platform :ios, 15.0' and
  Capacitor 8's minimum. Mismatched target caused Swift compile errors
  for iOS-15-only APIs in linked pods.
- Add CapacitorMlkitBarcodeScanning pod to Podfile and the package to
  root package.json (already in frontend/package.json). Without this,
  cap sync never linked the pod and the build failed with
  'No such module CapacitorMLKitBarcodeScanning'.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-27 10:55:13 +02:00

36 lines
1.3 KiB
JSON

{
"name": "farma-finder",
"version": "1.0.0",
"description": "FarmaFinder - Full stack application",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:backend dev:frontend",
"dev:backend": "npm run dev --prefix backend",
"dev:frontend": "npm run dev --prefix frontend",
"start": "npm-run-all --parallel start:backend start:frontend",
"start:backend": "npm start --prefix backend",
"start:frontend": "npm run preview --prefix frontend",
"install:all": "npm install && npm install --prefix backend && npm install --prefix frontend",
"build:web": "npm run build --prefix frontend",
"cap:sync": "npm run build:web && cap sync",
"cap:copy": "npm run build:web && cap copy",
"cap:open:android": "cap open android",
"cap:open:ios": "cap open ios",
"cap:run:android": "npm run build:web && cap run android",
"cap:run:ios": "npm run build:web && cap run ios"
},
"devDependencies": {
"@capacitor/cli": "^8.4.1",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"@capacitor-mlkit/barcode-scanning": "^8.1.0",
"@capacitor/android": "^8.4.1",
"@capacitor/app": "^8.1.0",
"@capacitor/core": "^8.4.1",
"@capacitor/ios": "^8.4.1",
"@capacitor/splash-screen": "^8.0.1",
"@capacitor/status-bar": "^8.0.2"
}
}