-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.44 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
{
"name": "supamail",
"version": "0.1.0",
"private": true,
"description": "SupaMail monorepo — Supabase/Postgres-native IMAP mirror + landing site.",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@supamail/web",
"dev:worker": "pnpm --filter @supamail/api dev:worker",
"dev:api": "pnpm --filter @supamail/api dev:api",
"harness:check": "node scripts/check-harness-impact.mjs",
"migrate": "pnpm --filter @supamail/api migrate",
"spec-conformance": "pnpm --filter @supamail/api spec-conformance",
"test:docker-lifecycle": "pnpm --filter @supamail/api test:docker-lifecycle",
"test:db:live": "pnpm --filter @supamail/api test:db:live",
"smoke:greenmail": "pnpm --filter @supamail/api smoke:greenmail",
"smoke:dovecot": "pnpm --filter @supamail/api smoke:dovecot",
"smoke:load": "pnpm --filter @supamail/api smoke:load"
},
"devDependencies": {
"turbo": "^2.3.3"
},
"pnpm": {
"overrides": {
"@hono/node-server": "2.0.12",
"esbuild": "0.28.1",
"fast-uri": "3.1.4",
"postcss": "8.5.24",
"sharp": "0.35.3",
"vite": "6.4.3"
},
"patchedDependencies": {
"imapflow@1.6.1": "patches/imapflow@1.6.1.patch"
}
},
"engines": {
"node": "24.x",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.0.0"
}