-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "functions",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "22"
},
"main": "lib/index.js",
"dependencies": {
"@google-cloud/tasks": "^6.2.0",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"firebase-admin": "^12.6.0",
"firebase-functions": "^7.2.2",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/node": "^25.2.3",
"firebase-functions-test": "^3.1.0",
"typescript": "^4.9.0"
},
"private": true
}