mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 07:08:10 -05:00
* 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
20 lines
715 B
JSON
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"
|
|
}
|