Backend (Fastify + TS): FluentForms webhook -> NocoDB row + QR + MailerSend email; PIN auth; scan/lookup/redeem with per-code serialization; reusable QR codes with count-based check-in; admin search. App (Expo, one codebase): Android APK + iPhone PWA. Login, camera scanner (native + web barcode-detector split), green/red overlay with sound + haptics, admin lookup/redeem. Session token persisted per device. Ops: multi-stage Dockerfile serving API + PWA same-origin, compose bound to 127.0.0.1; Forgejo Actions runner + tag-triggered signed APK build for Obtainium. Docs in README.md and INSTALL.md. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
33 lines
950 B
JSON
33 lines
950 B
JSON
{
|
|
"name": "camptickets-app",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"web": "expo start --web",
|
|
"android": "expo start --android",
|
|
"export:web": "expo export --platform web && node scripts/inject-pwa.mjs dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"prebuild": "expo prebuild"
|
|
},
|
|
"dependencies": {
|
|
"@expo/metro-runtime": "~57.0.3",
|
|
"@types/react": "~19.2.4",
|
|
"barcode-detector": "^3.2.0",
|
|
"expo": "~57.0.4",
|
|
"expo-audio": "~57.0.0",
|
|
"expo-camera": "~57.0.1",
|
|
"expo-constants": "~57.0.3",
|
|
"expo-haptics": "~57.0.0",
|
|
"expo-linking": "~57.0.2",
|
|
"expo-router": "~57.0.4",
|
|
"expo-secure-store": "~57.0.0",
|
|
"expo-status-bar": "~57.0.0",
|
|
"react-dom": "19.2.3",
|
|
"react-native-safe-area-context": "~5.7.0",
|
|
"react-native-screens": "4.25.2",
|
|
"react-native-web": "^0.21.2",
|
|
"typescript": "~6.0.3"
|
|
}
|
|
}
|