-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.64 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
{
"name": "substrata",
"private": true,
"packageManager": "pnpm@10.12.4",
"scripts": {
"dev": "concurrently -k -n api,web \"corepack pnpm dev:api\" \"corepack pnpm dev:web\"",
"dev:web": "corepack pnpm --filter @substrata/web dev",
"dev:api": "corepack pnpm --filter @substrata/api dev",
"build": "corepack pnpm -r build",
"lint": "corepack pnpm -r lint",
"test": "corepack pnpm --filter @substrata/api test",
"typecheck": "corepack pnpm -r typecheck",
"db:generate": "corepack pnpm --filter @substrata/db prisma:generate",
"db:migrate": "corepack pnpm --filter @substrata/db prisma:migrate",
"db:studio": "corepack pnpm --filter @substrata/db prisma:studio",
"db:seed": "corepack pnpm --filter @substrata/db seed",
"backfill:classification-integrity": "corepack pnpm --filter @substrata/api exec tsx src/scripts/backfill-classification-integrity.ts",
"worker:sample": "python3 workers/classifier/src/main.py workers/classifier/samples/sample-input.json",
"worker:run-sample": "corepack pnpm worker:sample",
"worker:validate-sample": "node scripts/validate-worker-output.mjs workers/classifier/samples/output-sample.json --min-specs=8",
"validate:production-env": "node scripts/validate-production-env.mjs --env-file infra/.env.production",
"test:production-env": "node --test scripts/validate-production-env.test.mjs",
"smoke:api": "node scripts/smoke-api.mjs"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/node": "^24.0.10",
"concurrently": "^9.2.0",
"eslint": "^9.29.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
}
}