-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.41 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
72
73
74
75
76
77
78
79
{
"name": "foreman",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:generate": "cd packages/agents && npx drizzle-kit generate",
"db:migrate": "cd packages/agents && npx drizzle-kit migrate",
"supabase:start": "npx supabase start",
"supabase:stop": "npx supabase stop",
"supabase:status": "npx supabase status",
"test": "vitest run",
"test:e2e": "npx playwright test",
"dev:mock": "node tests/start-mock-dev.js",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format --write .",
"check:deps": "node scripts/check-dep-uniqueness.mjs",
"dead-code": "npx fallow dead-code",
"dead-code:json": "npx fallow dead-code --format json",
"sdk:check": "node scripts/zapier-sdk-watch.mjs",
"sdk:check:quiet": "node scripts/zapier-sdk-watch.mjs --quiet",
"audit:ci": "npm audit --audit-level=moderate",
"postinstall": "patch-package && node scripts/check-dep-uniqueness.mjs"
},
"overrides": {
"esbuild": ">=0.25.0",
"zod": "4.4.3",
"postcss": "^8.5.10",
"sharp": "^0.35.3",
"adm-zip": "^0.6.0",
"rimraf": "^6.1.3",
"@hono/node-server": "^2.0.12",
"@mastra/core": "1.63.0",
"@mastra/deployer": "1.63.0",
"@mastra/server": "1.63.0",
"@mastra/ai-sdk": "1.10.0",
"@mastra/editor": "0.14.1",
"@mastra/evals": "1.9.0",
"@mastra/fastembed": "1.3.0",
"@mastra/loggers": "1.3.0",
"@mastra/memory": "1.28.0",
"@mastra/observability": "1.17.3",
"@mastra/pg": "1.22.0",
"@mastra/rag": "2.6.0",
"@mastra/voice-openai": "0.13.0",
"@mastra/deployer-cloudflare": "1.2.20",
"@mastra/deployer-vercel": "1.2.20"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@copilotkit/aimock": "^1.14.3",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/ui": "^4.1.4",
"@zapier/zapier-sdk-cli": "^0.77.8",
"drizzle-kit": "^0.31.10",
"jsdom": "^29.0.2",
"patch-package": "^8.0.1",
"postcss": "^8.5.10",
"supabase": "^2.114.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.4"
}
}