Files
self/package.json
Justin Hernandez 6d27b365c7 Bump build to test PACE polling (ios 127; android 66) (#591)
* bump builds

* update env.sample with new env vars, and add _NFC to mixpanel nfc var

* remove NDEF so we can keep target sdk version at 15

* add sort package json command

* sort all project package.json files

* enable hermes

* disable hermes

* revert disabling

* remove hermes
2025-06-06 07:29:26 -07:00

20 lines
715 B
JSON

{
"name": "self-workspace-root",
"workspaces": [
"app",
"common",
"circuits",
"contracts",
"sdk/*",
"sdk/tests/*",
"prover/tests"
],
"scripts": {
"build": "yarn workspaces foreach --topological-dev --parallel --exclude @selfxyz/contracts -i --all run build",
"lint": "yarn workspaces foreach --parallel -i --all --exclude self-workspace-root run lint",
"sort-package-json": "find . -name 'package.json' -not -path '*/node_modules/*' -print0 | xargs -0 -I {} sh -c 'echo Sorting {}; npx sort-package-json {}'",
"types": "yarn workspaces foreach --topological-dev --parallel --exclude @selfxyz/contracts -i --all run types "
},
"packageManager": "yarn@4.6.0"
}