generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1005 Bytes
/
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
{
"name": "github-webhook-proxy",
"packageManager": "[email protected]",
"main": "lambdas/proxy/index.js",
"type": "module",
"scripts": {
"build": "bun build lambda/proxy.ts --outdir build/ --target node",
"format": "prettier --write .",
"format-check": "prettier --check",
"test": "bun jest"
},
"dependencies": {
"axios": "1.7.9",
"lodash.mapkeys": "4.6.0",
"zod": "3.24.1"
},
"devDependencies": {
"@octokit/webhooks": "13.4.1",
"@swc/jest": "0.2.37",
"@types/aws-lambda": "8.10.146",
"@types/jest": "29.5.14",
"@types/lodash.mapkeys": "4.6.9",
"@types/micromatch": "4.0.9",
"jest": "29.7.0",
"prettier": "3.4.2",
"typescript": "5.7.2"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"extensionsToTreatAsEsm": [
".ts"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"clearMocks": true
}
}