-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.38 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.38 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
{
"name": "github-action-gate",
"version": "1.0.0",
"description": "GitHub App that gates GitHub Actions workflows/jobs with ownership attestations",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc && tsc -p tsconfig.worker.json && cp src/generated/prisma/internal/query_compiler_bg.wasm dist-worker/generated/prisma/internal/",
"start": "probot run ./dist/index.js",
"dev": "tsc && probot run ./dist/index.js",
"prisma:generate": "prisma generate && bash scripts/patch-prisma-for-workers.sh",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:studio": "prisma studio",
"prisma:seed": "ts-node prisma/seed.ts",
"d1:create": "wrangler d1 create action-gate",
"d1:migrate:local": "wrangler d1 migrations apply action-gate --local",
"d1:migrate:remote": "wrangler d1 migrations apply action-gate",
"type-check": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts' 'docs/app.js'",
"format:check": "prettier --check 'src/**/*.ts' 'docs/app.js'",
"test": "jest --passWithNoTests",
"pages:deploy": "wrangler pages deploy docs --project-name action-gate-dashboard"
},
"dependencies": {
"@octokit/auth-app": "^8.2.0",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/rest": "^22.0.1",
"@prisma/adapter-d1": "^7.5.0",
"@prisma/client": "^7.5.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"js-yaml": "^4.1.1",
"pino": "^10.3.1",
"probot": "^14.2.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260316.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.3.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"prisma": "^7.5.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"wrangler": "^4.74.0"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"miniflare": {
"undici": "^7.24.4"
}
},
"license": "Apache-2.0"
}