-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 KB
/
package.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "functions",
"scripts": {
"fmt": "prettier . -c",
"fmt:fix": "prettier . --write",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"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",
"test": "jest",
"emu:all": "kill-port 6060 5050 8118 && firebase emulators:start",
"db": "firebase emulators:start --only firestore",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"dependencies": {
"firebase-admin": "^11.8.0",
"firebase-functions": "^4.3.1",
"nodemw": "^0.20.0"
},
"devDependencies": {
"@trunkio/launcher": "^1.2.7",
"@types/express": "4.17.17",
"@types/jest": "^29.5.7",
"@types/node": "18",
"firebase-functions-test": "^3.1.0",
"jest": "^29.7.0",
"kill-port": "2.0.1",
"ts-jest": "^29.1.1",
"typescript": "^4.9.0"
},
"main": "lib/index.js",
"private": true,
"version": "1.0.0",
"directories": {
"lib": "lib"
},
"author": "",
"license": "ISC",
"description": ""
}