-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "github-actions-access-manager",
"type": "module",
"scripts": {
"lint": "eslint .",
"build": "ncc build src/server.ts",
"build:aws-lambda": "ncc build deployments/aws/lambda-handler.ts ",
"build:docker-container": "docker build -t localhost/github-access-token-server:latest .",
"build:vercel-function": "ncc build deployments/vercel/api/index.ts",
"build:netlify-function": "ncc build deployments/netlify/api/access_tokens.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --forceExit --detectOpenHandles --verbose",
"start": "ncc run src/server.ts"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.738.0",
"@aws-sdk/client-secrets-manager": "^3.738.0",
"@hono/node-server": "^1.13.8",
"@octokit/auth-app": "^7.1.4",
"@octokit/rest": "^21.1.0",
"fast-jwt": "^5.0.5",
"get-jwks": "^11.0.0",
"hono": "^4.6.20",
"pino": "^9.6.0",
"yaml": "^2.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250129.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@octokit/types": "^13.8.0",
"@types/aws-lambda": "^8.10.147",
"@types/content-type": "^1.1.8",
"@types/jest": "^29.5.14",
"typescript-eslint": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.22.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.19.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"jest": "^29.7.0",
"pino-pretty": "^13.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"engines": {
"node": "20.x"
}
}