-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 991 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 991 Bytes
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
{
"name": "docx-corpus",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"corpus": "bun run apps/cli/index.ts",
"db:shell": "docker exec -it docx-corpus-postgres-1 psql -U postgres -d docx_corpus",
"lint": "biome check",
"format": "biome format --write",
"typecheck": "bun run --cwd packages/scraper typecheck && bun run --cwd packages/extractor typecheck && bun run --cwd apps/cli typecheck",
"test": "bun run --cwd packages/scraper test && bun run --cwd apps/cli test",
"build": "bun run --cwd packages/scraper build && bun run --cwd apps/cli build",
"release:cli": "bun run --cwd apps/cli release",
"setup:extractor": "bun run --cwd packages/extractor setup",
"prepare": "lefthook install",
"dev:web": "bun run apps/web/scripts/preview.ts",
"dev:web:generate": "bun run apps/web/scripts/generate-pages.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"lefthook": "^1.11.13"
}
}