-
Notifications
You must be signed in to change notification settings - Fork 95
Description
We get the following error:
\firebase-functions\lib\providers\https'
Require stack:
C:\Users\jonke\AppData\Roaming\npm\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js
! Your function was killed because it raised an unhandled error.
Here is our package 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": "18"
},
"dependencies": {
"busboy": "^0.3.1",
"express": "^4.17.1",
"firebase": "^8.2.3",
"firebase-admin": "^11.10.0",
"firebase-functions": "^5.0.1"
},
"devDependencies": {
"firebase-functions-test": "^0.1.6"
},
"private": true
}