Jobber/package.json
Shaheer Sarfaraz b94f85b149
Reduce low risk duplication (#79)
* clean up helpers

* shared in it's own top level folder

* workspaces setup

* build fix

* disable workspaces?

* run ci

* rename job-flow to gradcracker

* optional dependencies

* formatting?

* more optional modules

* allow post install runs

* node bump

* remove post install

* add optionals

* add more

* formatting

* comments, but im unsure

* run typescript DIRECTLY

* better build

* camoufox simplification

* lint

* build process doesn't exist

* build fix

* lockfile

* type check everything, build only for client

* rename steps correctly

* import from package!

* fix formatting

* don't fetch twice

* fix concern
2026-02-02 21:30:14 +00:00

21 lines
621 B
JSON

{
"name": "job-ops",
"private": true,
"workspaces": [
"orchestrator",
"extractors/*",
"shared"
],
"scripts": {
"check:types:shared": "npm --workspace shared run check:types",
"check:types": "npm --workspace shared run check:types && npm --workspace orchestrator run check:types",
"check:types:ukvisajobs": "npm --workspace ukvisajobs-extractor run check:types",
"check:all": "npx biome ci .",
"format:all": "npx biome format . --write",
"check:types:gradcracker": "npm --workspace gradcracker-extractor run check:types"
},
"devDependencies": {
"tsx": "^4.19.2"
}
}