-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
45
46
47
48
49
50
51
52
{
"name": "firestore-logger",
"version": "0.2.2",
"description": "A small app to log out updates to Firestore at given paths",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc"
},
"bin": {
"firelogger": "./index.js"
},
"keywords": [
"firestore",
"logger",
"firebase",
"google",
"gcp",
"logs",
"log",
"fs"
],
"repository": "natestrong/node-firestore-logger",
"author": "Nathan Strong",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^16.0.1",
"@types/yargs": "^17.0.2",
"babel-cli": "^6.26.0",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@google-cloud/firestore": "^4.13.1",
"express": "^4.17.1",
"firebase": "^8.7.0",
"firebase-admin": "^9.10.0",
"lodash": "^4.17.21",
"rxfire": "^4.0.0",
"rxjs": "^7.2.0",
"yargs": "^17.0.1"
}
}