Files
self/package.json
Justin Hernandez 95a3ce5f0c Alias app imports: @src, @tests (#852)
* Support @src alias tooling

* run script and nice

* convert ts script to cjs, update sources

* convert to cjs

* wip update paths

* nice and updates

* fix tests alias paths

* lint fixes

* add @tests alias support

* update script and tests to fix remaining src alias paths

* updates

* update script

* fix

* update lock file

* fix test target

* update timeout

* update flow

* fix flow
2025-08-08 15:05:08 -07:00

34 lines
1.3 KiB
JSON

{
"name": "self-workspace-root",
"workspaces": [
"app",
"circuits",
"common",
"contracts",
"prover/tests",
"sdk/*"
],
"scripts": {
"build": "yarn workspaces foreach --topological-dev --parallel --exclude @selfxyz/contracts -i --all run build",
"format": "yarn format:root && yarn format:github && yarn workspaces foreach --parallel -i --all --exclude self-workspace-root run format",
"format:github": "prettier --parser yaml --write .github/**/*.yml --single-quote false",
"format:root": "prettier --parser markdown --write *.md && prettier --parser yaml --write .*.{yml,yaml} --single-quote false",
"gitleaks": "gitleaks protect --staged --redact --config=.gitleaks.toml",
"postinstall": "patch-package",
"lint": "yarn workspaces foreach --parallel -i --all --exclude self-workspace-root run lint",
"prepare": "husky",
"sort-package-jsons": "find . -name 'package.json' -not -path './node_modules/*' -not -path './*/node_modules/*' | xargs npx sort-package-json",
"types": "yarn workspaces foreach --topological-dev --parallel --exclude @selfxyz/contracts -i --all run types "
},
"devDependencies": {
"gitleaks": "1.0.0",
"husky": "9.1.7",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0"
},
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=22 <23"
}
}