-
-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 668 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 668 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
{
"name": "firebase-function-example",
"scripts": {
"build": "tsc",
"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": ">=12"
},
"type": "module",
"dependencies": {
"@tinyhttp/app": "workspace:*",
"firebase-admin": "^13.2.0",
"firebase-functions": "^6.3.2"
},
"devDependencies": {
"firebase-functions-test": "^3.4.1",
"firebase-tools": "^14.1.0",
"typescript": "^5.8.3"
},
"private": true
}