-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.25 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.25 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
{
"name": "agentbridge-monorepo",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "corepack pnpm --filter @agentbridge/web dev",
"build": "corepack pnpm prisma:generate && corepack pnpm --filter @agentbridge/web build && corepack pnpm --filter agentbridge-ai build",
"build:web": "corepack pnpm prisma:generate && corepack pnpm --filter @agentbridge/web build",
"start": "corepack pnpm --filter @agentbridge/web start",
"lint": "corepack pnpm --filter @agentbridge/web lint",
"lint:web": "corepack pnpm --filter @agentbridge/web lint",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:seed": "tsx scripts/seed-admin.ts",
"prisma:studio": "prisma studio",
"typecheck": "corepack pnpm prisma:generate && corepack pnpm --filter @agentbridge/web typecheck && corepack pnpm --filter agentbridge-ai typecheck",
"typecheck:web": "corepack pnpm prisma:generate && corepack pnpm --filter @agentbridge/web typecheck",
"test:api": "tsx --tsconfig apps/web/tsconfig.json --test apps/web/lib/api/*.test.ts apps/web/lib/dashboard/*.test.ts",
"test:task-freshness": "tsx --tsconfig apps/web/tsconfig.json --test apps/web/lib/api/task-freshness.test.ts",
"cli:dev": "corepack pnpm --filter agentbridge-ai dev",
"cli:build": "corepack pnpm --filter agentbridge-ai build",
"cli:typecheck": "corepack pnpm --filter agentbridge-ai typecheck",
"cli:pack": "corepack pnpm --filter agentbridge-ai pack:dry-run",
"smoke:auth-health": "tsx scripts/smoke-auth-health.ts",
"smoke:saas-production": "tsx scripts/smoke-saas-production.ts"
},
"devDependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@types/node": "^25.5.0",
"@types/pg": "^8.20.0",
"bcryptjs": "^3.0.3",
"dotenv": "^17.4.2",
"pg": "^8.20.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.8.0",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@11.0.9",
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/engines",
"@scarf/scarf",
"esbuild",
"msw",
"prisma",
"sharp",
"unrs-resolver"
]
}
}