- Added TripInvitationRepository for managing trip invitations. - Created TripInvitation model with serialization methods. - Implemented notification payload parser for handling FCM notifications. - Enhanced NotificationService to manage trip invitations and related actions. - Updated UserRepository to include user search functionality. - Modified AuthRepository to store multiple FCM tokens. - Added tests for trip invitation logic and notification payload parsing. - Updated pubspec.yaml and pubspec.lock for dependency management.
25 lines
579 B
JSON
25 lines
579 B
JSON
{
|
|
"name": "functions",
|
|
"description": "Cloud Functions for Firebase",
|
|
"scripts": {
|
|
"serve": "firebase emulators:start --only functions",
|
|
"shell": "firebase functions:shell",
|
|
"start": "npm run shell",
|
|
"deploy": "firebase deploy --only functions",
|
|
"logs": "firebase functions:log"
|
|
},
|
|
"engines": {
|
|
"node": "20"
|
|
},
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"firebase-admin": "^13.6.0",
|
|
"firebase-functions": "^7.0.0",
|
|
"nodemailer": "^6.10.1"
|
|
},
|
|
"devDependencies": {
|
|
"firebase-functions-test": "^3.4.1"
|
|
},
|
|
"private": true
|
|
}
|