-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.51 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
{
"name": "effect-agent-template",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=26"
},
"scripts": {
"dev": "sh -c 'set -a; [ ! -f .env ] || . ./.env; set +a; turbo run dev'",
"build": "turbo run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit --pretty false",
"lint": "oxlint . && prettier --check .",
"format": "prettier --write .",
"architecture:check": "tsx scripts/check-architecture.ts",
"dependencies:check": "tsx scripts/check-dependencies.ts",
"design:lint": "pnpm --filter @repo/web design:lint",
"recipes": "vitest run examples/effect-recipes/test",
"guardrails": "pnpm lint && pnpm typecheck && pnpm architecture:check && pnpm dependencies:check && pnpm design:lint && pnpm template:check && pnpm test",
"effect:reference:sync": "tsx scripts/effect-reference-sync.ts",
"db:migrate": "pnpm --filter @repo/db migrate",
"compose:up": "docker compose up --build",
"compose:down": "docker compose down",
"compose:smoke": "sh scripts/compose-smoke.sh",
"template:check": "tsx scripts/check-template.ts",
"infra:check": "docker compose config --quiet && pnpm template:check"
},
"devDependencies": {
"@google/design.md": "^0.3.0",
"@types/node": "^24.10.0",
"effect": "catalog:",
"oxlint": "^1.74.0",
"prettier": "^3.9.5",
"tsx": "^4.23.1",
"turbo": "^2.10.5",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}