-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.24 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.24 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
{
"name": "open-maintainer",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"cli": "bun apps/cli/src/index.ts",
"open-maintainer": "bun apps/cli/src/index.ts",
"lint": "biome check .",
"lint:fix": "bun run lint --fix",
"format": "biome format --write .",
"typecheck": "tsc -b",
"test": "vitest run",
"build": "bun run --cwd packages/shared build && bun run --cwd packages/triage build && bun run --cwd packages/ai build && bun run --cwd packages/review build && bun run --cwd packages/db build && bun run --cwd packages/config build && bun run --cwd packages/github build && bun run --cwd packages/analyzer build && bun run --cwd packages/context build && bun run --cwd apps/cli build && bun run --cwd apps/api build && bun run --cwd apps/worker build && bun run --cwd apps/web build",
"dev:api": "bun run --cwd apps/api dev",
"dev:web": "bun run --cwd apps/web dev",
"dev:worker": "bun run --cwd apps/worker dev",
"diagnostics": "bun run tests/smoke/local-health.ts",
"smoke:compose": "bun run tests/smoke/compose-smoke.ts",
"smoke:mvp": "bun run tests/smoke/mvp-demo.ts"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"@fastify/formbody": "^8.0.2",
"@fastify/rate-limit": "^10.3.0",
"@open-maintainer/ai": "workspace:*",
"@open-maintainer/analyzer": "workspace:*",
"@open-maintainer/config": "workspace:*",
"@open-maintainer/context": "workspace:*",
"@open-maintainer/db": "workspace:*",
"@open-maintainer/github": "workspace:*",
"@open-maintainer/shared": "workspace:*",
"@open-maintainer/triage": "workspace:*",
"@octokit/auth-app": "^7.1.1",
"@octokit/rest": "^21.1.1",
"@octokit/webhooks-methods": "^5.1.0",
"bullmq": "^5.39.1",
"drizzle-orm": "^0.45.2",
"fastify": "^5.2.1",
"ioredis": "^5.4.2",
"next": "^15.1.6",
"pg": "^8.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"yaml": "^2.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.7",
"@types/pg": "^8.11.10",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}