-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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
{
"name": "functions",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"format": "prettier --write src/**/*.ts",
"emulate": "firebase emulators:start --import=./emulator-data --export-on-exit",
"serve": "tsc-watch --onFirstSuccess 'npm run emulate'"
},
"engines": {
"node": "16"
},
"main": "lib/index.js",
"dependencies": {
"@elastic/elasticsearch": "^7.12.0",
"@google-cloud/pubsub": "^2.8.0",
"@octokit/rest": "^18.1.0",
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.5",
"fast-deep-equal": "^3.1.3",
"firebase-admin": "^11.10.1",
"firebase-functions": "^3.16.0",
"marked": "^2.0.7",
"node-fetch": "^2.6.1",
"url-join": "^4.0.1"
},
"devDependencies": {
"@octokit/types": "^6.8.2",
"@types/cheerio": "^0.22.23",
"@types/marked": "^2.0.3",
"@types/node-fetch": "^2.5.11",
"@types/url-join": "^4.0.0",
"firebase-functions-test": "^0.2.0",
"firebase-tools": "^12.5.1",
"prettier": "^2.2.1",
"tsc-watch": "^4.5.0",
"typescript": "~4.5.5"
},
"private": true
}