-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.05 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
{
"name": "tripwire",
"private": true,
"type": "module",
"packageManager": "bun@1.3.13",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"prepare": "git config core.hooksPath scripts/githooks || true",
"commitlint": "commitlint --edit",
"dev": "turbo run dev tunnel",
"dev:local": "turbo run dev",
"dev:web": "bun --filter '@tripwire/web' dev",
"dev:demo": "bun run scripts/dev-demo.ts",
"build": "bun --filter '*' build",
"typecheck": "bun --filter '*' typecheck",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"check:boundaries": "bun run scripts/check-boundaries.ts",
"test": "bun run scripts/e2e/harness.ts",
"beta": "bun --env-file=.env.production run scripts/beta-approve.ts",
"grant-admin": "bun --env-file=.env.production run scripts/grant-admin.ts",
"rule-check": "bun --env-file=.env.production run scripts/rule-check.ts",
"db:up": "docker compose up -d postgres",
"db:generate": "bun run --filter '@tripwire/db' generate",
"db:studio": "bun run --filter '@tripwire/db' studio",
"db:studio:prod": "bun --env-file=.env.production run --filter '@tripwire/db' studio",
"db:migrate": "DATABASE_URL=${DATABASE_URL:-postgres://tripwire:tripwire@localhost:5432/tripwire} bun run --filter '@tripwire/db' migrate",
"db:migrate:prod": "bun --env-file=.env.production run --filter '@tripwire/db' migrate",
"dev:api": "bun run apps/api/src/index.ts",
"dev:worker": "bun run apps/worker/src/index.ts",
"replay": "bun run apps/worker/src/jobs/replay.ts",
"econ": "bun run apps/worker/src/economics-trigger.ts",
"econ:prod": "bun --env-file=.env.production run apps/worker/src/economics-trigger.ts",
"test:run": "bun run scripts/e2e/harness.ts --only gate-pass --no-input",
"test:lifecycle": "bun run scripts/e2e/harness.ts --only comment-lifecycle --no-input",
"test:lifecycle:prod": "bun --env-file=.env.e2e scripts/e2e/harness.ts --only comment-lifecycle --no-input",
"test:workflows": "bun run scripts/e2e/harness.ts --axis workflow --no-input",
"test:workflows:prod": "bun --env-file=.env.e2e scripts/e2e/harness.ts --axis workflow --no-input",
"eval:ai": "bun run scripts/eval/run.ts",
"eval:ai:prod-model": "bun run scripts/eval/run.ts --prod-model",
"test:suite": "bun test",
"verify:planetscale": "bun run scripts/verify-planetscale.ts",
"smoke:deploy": "bun run scripts/smoke-deploy.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@clack/prompts": "^1.7.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@tripwire/contracts": "workspace:*",
"@tripwire/core": "workspace:*",
"@tripwire/db": "workspace:*",
"@tripwire/forge-github": "workspace:*",
"@tripwire/utils": "workspace:*",
"@types/bun": "^1.2.0",
"commander": "^15.0.0",
"drizzle-orm": "^0.45.2",
"picocolors": "^1.1.1",
"playwright-core": "^1.61.1",
"turbo": "^2.6.2",
"typescript": "^5.7.2",
"ultracite": "7.8.3"
},
"engines": {
"bun": ">=1.3.0"
},
"dependencies": {
"@electric-sql/pglite": "^0.2.17"
}
}