-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.26 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.26 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
{
"name": "gitlab-agent-webhook",
"version": "0.1.0",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --watch src/index.ts",
"check": "bun run typecheck && bun run lint && bun run test",
"typecheck": "tsc --noEmit",
"lint": "biome check --error-on-warnings src/ tests/",
"format": "biome format --write src/ tests/",
"test": "bun test",
"test:watch": "bun test --watch",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"setup-webhooks": "bun scripts/setup-webhooks.ts",
"build": "bun build src/index.ts --outdir dist --target bun && rm -rf dist/db/migrations && mkdir -p dist/db && cp -R src/db/migrations dist/db/migrations",
"start": "bun run dist/index.js",
"prepare": "command -v lefthook >/dev/null 2>&1 && lefthook install || true"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "latest",
"better-sqlite3": "^12.8.0",
"drizzle-kit": "^0.31.9",
"pino-pretty": "^13.1.3",
"pm2": "^6.0.14",
"typescript": "^5.9.3"
},
"dependencies": {
"@gitbeaker/rest": "^43.8.0",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.7",
"neverthrow": "^8.2.0",
"pino": "^10.3.1",
"zod": "^4.3.6"
}
}