-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 3.11 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 3.11 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
{
"name": "imago",
"version": "0.0.1",
"private": true,
"type": "module",
"packageManager": "pnpm@10.31.0",
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "node scripts/setup-git-hooks.mjs",
"hooks:install": "node scripts/setup-git-hooks.mjs",
"dev": "turbo dev",
"dev:mam-web": "turbo dev --filter=@imago/dashboard",
"dev:orchestrator": "tsx scripts/mam-orchestrator.ts",
"dev:dashboard": "concurrently -k \"pnpm dev:mam-web\" \"pnpm dev:orchestrator\"",
"dev:capture-ui": "turbo dev --filter=@imago/capture-ui",
"dev:capture-desktop": "pnpm --filter @imago/capture-desktop dev",
"capture:desktop:bundle-runtime": "tsx scripts/build-capture-desktop-runtime.ts",
"capture:desktop:config:repo-dev": "tsx scripts/write-capture-desktop-config.ts --preset repo-dev",
"capture:desktop:config:attached-local": "tsx scripts/write-capture-desktop-config.ts --preset attached-local",
"capture:desktop:pack": "pnpm --filter @imago/capture-desktop pack",
"capture:desktop:pack:win": "pnpm --filter @imago/capture-desktop pack:win",
"capture:desktop:pack:mac": "pnpm --filter @imago/capture-desktop pack:mac",
"capture:desktop:pack:linux": "pnpm --filter @imago/capture-desktop pack:linux",
"dev:processor": "pnpm --filter @imago/processor dev",
"nodes:credential": "tsx scripts/create-node-credential.ts",
"capture:daemon": "tsx scripts/capture-daemon.ts",
"dev:capture": "concurrently -k \"pnpm capture:daemon\" \"pnpm dev:capture-ui\"",
"build": "turbo build",
"build:libs": "turbo build --filter=@imago/imago-core --filter=@imago/imago-capture --filter=@imago/imago-pipeline --filter=@imago/processor",
"check": "pnpm --filter @imago/imago-core check && pnpm --filter @imago/imago-capture check && pnpm --filter @imago/imago-pipeline check && pnpm --filter @imago/processor check && pnpm --filter @imago/dashboard check && pnpm --filter @imago/capture-ui check && pnpm --filter @imago/capture-desktop check",
"test": "pnpm --filter @imago/imago-core test && pnpm --filter @imago/imago-capture test && pnpm --filter @imago/imago-pipeline test && pnpm --filter @imago/processor test",
"clean": "turbo clean",
"db:status": "pnpm --filter @imago/dashboard db:status",
"db:migrate": "pnpm --filter @imago/dashboard db:migrate",
"happy-path": "pnpm build:libs && tsx scripts/happy-path.ts",
"happy-path:processor": "pnpm build:libs && tsx scripts/happy-path-processor.ts",
"infra:up": "docker compose up -d postgres minio minio-bootstrap",
"infra:down": "docker compose down -v",
"infra:logs": "docker compose logs -f postgres minio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1028.0",
"@happyvertical/smrt-jobs": "catalog:",
"@happyvertical/sql": "catalog:",
"@imago/imago-capture": "workspace:*",
"@imago/imago-core": "workspace:*",
"@imago/imago-pipeline": "workspace:*",
"@imago/processor": "workspace:*"
},
"devDependencies": {
"concurrently": "catalog:",
"esbuild": "^0.28.0",
"playwright": "^1.58.2",
"tsx": "catalog:",
"turbo": "^2.8.12",
"typescript": "catalog:"
}
}