-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.57 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
{
"name": "job-scraper",
"version": "0.1.0",
"private": true,
"description": "Full-stack job scraper monorepo.",
"scripts": {
"build": "npm run build -w @job-scraper/shared && npm run build -w @job-scraper/parsers && npm run build -w @job-scraper/notifier && npm run build -w @job-scraper/database && npm run build -w @job-scraper/scraper-core && npm run build -w apps-scraper && npm run build -w apps-worker && npm run build -w apps-dashboard",
"dev": "npm run dev -w apps/dashboard",
"dev:dashboard": "npm run dev -w apps/dashboard",
"dev:worker": "npm run dev -w apps/worker",
"notify:test": "npm run notify:test -w apps/scraper",
"scrape": "npm run scrape -w apps/scraper",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run build -w @job-scraper/shared && npm run build -w @job-scraper/parsers && npm run build -w @job-scraper/notifier && npm run build -w @job-scraper/database && npm run build -w @job-scraper/scraper-core && npm run typecheck -w apps-scraper && npm run typecheck -w apps-worker && npm run typecheck -w apps-dashboard",
"db:generate": "npm run db:generate -w @job-scraper/database",
"db:migrate": "npm run db:migrate -w @job-scraper/database",
"db:studio": "npm run db:studio -w @job-scraper/database",
"postinstall": "npm run db:generate"
},
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=20.11.0"
},
"overrides": {
"postcss": "^8.5.10"
},
"devDependencies": {
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"typescript": "^5.7.2"
}
}