-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.27 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
{
"name": "mulder",
"private": true,
"type": "module",
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "turbo run dev --filter=@mulder/dev",
"app:dev": "pnpm --filter @mulder/app dev",
"app:build": "pnpm --filter @mulder/app build",
"app:preview": "pnpm --filter @mulder/app preview",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test:api:e2e": "node scripts/test-api-e2e.mjs",
"invite:owner": "node scripts/create-owner-invite.mjs",
"smoke:live": "node scripts/smoke-live-api.mjs",
"worker:service": "node scripts/run-worker-service.mjs",
"test:scope": "node scripts/test-scope.mjs",
"test:shard": "node scripts/test-shards.mjs run",
"test:shards:verify": "node scripts/test-shards.mjs verify 3",
"test:health": "vitest run tests/specs/44_e2e_pipeline_integration.test.ts",
"test:gcp": "vitest run tests/specs/20_fixture_generator.test.ts tests/specs/47_document_ai_extraction.test.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/pg": "^8.20.0",
"pdf-lib": "^1.17.1",
"pg": "^8.20.0",
"turbo": "^2.9.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}