-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 995 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 995 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
27
28
29
30
{
"name": "monmap",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm --filter webapp dev",
"build": "pnpm --filter webapp build",
"start": "pnpm --filter webapp start",
"scrape": "pnpm --filter @monmap/scraper scrape",
"scrape:all": "pnpm --filter @monmap/scraper scrape --all-years",
"ingest": "pnpm --filter @monmap/ingest start",
"ingest:all": "pnpm --filter @monmap/ingest start --all-years",
"db:generate": "pnpm --filter @monmap/db generate",
"db:migrate": "pnpm --filter @monmap/db migrate",
"db:studio": "pnpm --filter @monmap/db studio",
"typecheck": "pnpm -r typecheck",
"package": "tar -czf monmap-handbook-$(date +%Y%m%d).tar.gz -C packages/scraper/data raw manifest.json && ls -lh monmap-handbook-*.tar.gz"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"drizzle-orm": "0.38.4"
}
}
}