-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) 路 1.6 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) 路 1.6 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
{
"name": "ancora",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.8.0",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"dev": "scripts/dev/run-web.sh",
"lint": "pnpm repo:test:fast",
"test": "pnpm repo:test:task",
"test:impact": "pnpm repo:test:context",
"eval:smoke": "pnpm --filter @ancora/eval-runner smoke",
"docker:config": "docker compose -f docker/docker-compose.yml config",
"docker:up": "docker compose -f docker/docker-compose.yml up -d db",
"docker:down": "docker compose -f docker/docker-compose.yml down",
"db:migrate": "scripts/db/migrate.sh",
"db:seed": "scripts/db/seed.sh",
"web:dev": "scripts/dev/run-web.sh",
"web:lint": "pnpm --filter @ancora/web lint",
"web:typecheck": "pnpm --filter @ancora/web typecheck",
"web:test": "pnpm --filter @ancora/web test",
"packages:typecheck": "pnpm --filter @ancora/ui typecheck && pnpm --filter @ancora/shared-types typecheck && pnpm --filter @ancora/schemas typecheck && pnpm --filter @ancora/config typecheck",
"eval:typecheck": "pnpm --filter @ancora/eval-runner typecheck",
"eval:test": "pnpm --filter @ancora/eval-runner test",
"repo:test:fast": "scripts/ci/lanes/run-fast-blockers.sh",
"repo:test:task": "scripts/ci/lanes/run-task-guards.sh",
"repo:test:context": "scripts/ci/lanes/run-task-context-guards.sh",
"repo:test:pr": "scripts/ci/lanes/run-pr-guards.sh",
"guards:fast": "pnpm repo:test:fast",
"guards:task": "pnpm repo:test:task",
"guards:context": "pnpm repo:test:context",
"guards:pr": "pnpm repo:test:pr"
}
}