-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
92 lines (92 loc) · 2.57 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "publish-to-bcr",
"private": true,
"type": "module",
"main": "./application/webhook/index.js",
"engines": {
"node": "^20",
"pnpm": "^8"
},
"scripts": {
"build": "bazel build //...",
"test": "bazel test //src/...",
"e2e": "bazel test //e2e:test",
"//gcp-build": "Don't run any build steps on cloud run. See https://cloud.google.com/functions/docs/concepts/nodejs-runtime#npm_build_script/",
"gcp-build": ""
},
"dependencies": {
"@google-cloud/functions-framework": "^3.1.2",
"@google-cloud/secret-manager": "^5.0.1",
"@nestjs/common": "^10.3.9",
"@nestjs/core": "^10.3.9",
"@octokit/auth-app": "^4.0.4",
"@octokit/core": "^4.0.4",
"@octokit/rest": "^19.0.3",
"@octokit/types": "^10.0.0",
"@octokit/webhooks": "^10.0.8",
"@octokit/webhooks-methods": "^3.0.0",
"@octokit/webhooks-types": "^6.2.4",
"axios": "^1.4.0",
"axios-retry": "^4.0.0",
"diff": "^5.1.0",
"exponential-backoff": "3.1.1",
"extract-zip": "^2.0.1",
"gcp-metadata": "^6.0.0",
"google-auth-library": "^9.15.0",
"nodemailer": "^6.7.8",
"reflect-metadata": "^0.2.2",
"rxjs": "7.8.1",
"simple-git": "^3.16.0",
"source-map-support": "^0.5.21",
"tar": "^6.2.0",
"yaml": "^2.1.1",
"yargs": "~17.7.2"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"@eslint/js": "^9.18.0",
"@octokit/webhooks-methods": "^4.0.0",
"@types/archiver": "^6.0.2",
"@types/diff": "^5.0.2",
"@types/imapflow": "1.0.19",
"@types/jest": "^29.5.14",
"@types/mailparser": "^3.4.4",
"@types/node": "^18.6.2",
"@types/nodemailer": "^6.4.5",
"@types/source-map-support": "^0.5.4",
"@types/yargs": "^17.0.32",
"@types/tar": "^6.1.10",
"@types/uuid": "^10.0.0",
"archiver": "^7.0.0",
"babel-jest": "^29.7.0",
"eslint": "^9.18.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"expect": "^29.0.0",
"globals": "^15.14.0",
"globby": "^14.0.0",
"imapflow": "^1.0.147",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-extended": "^4.0.2",
"jest-mock": "^29.7.0",
"mailparser": "3.7.2",
"mockttp": "^3.10.0",
"portfinder": "^1.0.32",
"prettier": "3.4.2",
"typescript": "5.6.3",
"typescript-eslint": "^8.15.0"
},
"pnpm": {
"onlyBuiltDependencies": [],
"packageExtensions": {
"@google-cloud/secret-manager": {
"dependencies": {
"long": "5.2.3"
}
}
}
}
}