Files
amazon-clone/functions/package.json
T
dependabot[bot] ee9a1a6bda build(deps): bump jsonwebtoken, firebase-admin and firebase-functions
Bumps [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken) to 9.0.0 and updates ancestor dependencies [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken), [firebase-admin](https://github.com/firebase/firebase-admin-node) and [firebase-functions](https://github.com/firebase/firebase-functions). These dependencies need to be updated together.


Updates `jsonwebtoken` from 8.5.1 to 9.0.0
- [Release notes](https://github.com/auth0/node-jsonwebtoken/releases)
- [Changelog](https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](https://github.com/auth0/node-jsonwebtoken/compare/v8.5.1...v9.0.0)

Updates `firebase-admin` from 8.13.0 to 11.4.1
- [Release notes](https://github.com/firebase/firebase-admin-node/releases)
- [Commits](https://github.com/firebase/firebase-admin-node/compare/v8.13.0...v11.4.1)

Updates `firebase-functions` from 3.21.0 to 3.24.1
- [Release notes](https://github.com/firebase/firebase-functions/releases)
- [Changelog](https://github.com/firebase/firebase-functions/blob/master/tsconfig.release.json)
- [Commits](https://github.com/firebase/firebase-functions/compare/v3.21.0...v3.24.1)

---
updated-dependencies:
- dependency-name: jsonwebtoken
  dependency-type: indirect
- dependency-name: firebase-admin
  dependency-type: direct:production
- dependency-name: firebase-functions
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-23 02:47:39 +00:00

32 lines
776 B
JSON

{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"lint": "eslint .",
"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": "10"
},
"main": "index.js",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"firebase-admin": "^11.4.1",
"firebase-functions": "^3.24.1",
"stripe": "^8.94.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-promise": "^4.0.1",
"firebase-functions-test": "^0.2.0"
},
"private": true
}