-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.13 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.13 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"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": {
"@actions/attest": "^1.5.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@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",
"chalk": "^4.1.2",
"diff": "^5.1.0",
"encoding": "0.1.13",
"exponential-backoff": "3.1.3",
"extract-zip": "^2.0.1",
"gcp-metadata": "^6.0.0",
"google-auth-library": "^9.15.0",
"nodemailer": "^7.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "7.8.2",
"simple-git": "^3.16.0",
"source-map-support": "^0.5.21",
"tar": "^6.2.0",
"tree-node-cli": "^1.6.0",
"ts-results-es": "7.0.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/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": "^7.0.0",
"@types/source-map-support": "^0.5.4",
"@types/yargs": "^17.0.32",
"@types/tar": "^6.1.10",
"@types/uuid": "^11.0.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.3.2",
"eslint": "^9.18.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"expect": "^29.0.0",
"globals": "^16.0.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": "^7.0.0",
"jest-mock": "^29.7.0",
"mailparser": "3.9.1",
"mockttp": "^3.10.0",
"portfinder": "^1.0.32",
"prettier": "3.7.4",
"typescript": "5.9.3",
"typescript-eslint": "^8.15.0"
},
"pnpm": {
"onlyBuiltDependencies": [],
"packageExtensions": {
"@actions/github": {
"dependencies": {
"undici": "*"
}
},
"@google-cloud/secret-manager": {
"dependencies": {
"long": "5.2.3"
}
},
"debug": {
"dependencies": {
"supports-color": "*"
}
},
"follow-redirects": {
"dependencies": {
"debug": "*"
}
},
"node-fetch": {
"dependencies": {
"encoding": "*"
}
}
}
}
}