mirror of
https://github.com/luxfi/safe-wallet.git
synced 2026-07-27 06:55:00 +00:00
* chore: add Turborepo with remote caching Pipeline lint, type-check, test, prettier, and knip:exports through Turborepo so repeat runs (locally and in CI) hit a shared cache instead of re-executing. Wire Vercel remote cache via TURBO_TOKEN/TURBO_TEAM in .github/actions/yarn, and route web-checks.yml through turbo. Co-authored-by: Hanzo Dev <dev@hanzo.ai> * chore: pass extra args through turbo to underlying tasks Husky pre-push calls `yarn run lint --fix`, and turbo was swallowing `--fix` as its own flag. Appending `--` in the root scripts forwards extra args straight to each workspace's command. Co-authored-by: Hanzo Dev <dev@hanzo.ai> --------- Co-authored-by: Hanzo Dev <dev@hanzo.ai>
69 lines
2.0 KiB
JSON
69 lines
2.0 KiB
JSON
{
|
|
"private": true,
|
|
"name": "@safe-global/safe-wallet",
|
|
"version": "1.0.1",
|
|
"workspaces": [
|
|
"expo-plugins/*",
|
|
"apps/*",
|
|
"config/*",
|
|
"packages/*",
|
|
"tools/codemods/*"
|
|
],
|
|
"scripts": {
|
|
"lint": "turbo run lint --",
|
|
"type-check": "turbo run type-check --",
|
|
"test": "turbo run test --",
|
|
"test:scripts": "yarn workspace @safe-global/web jest --config ../../scripts/jest.config.cjs",
|
|
"eslint": "yarn workspaces foreach --all -pt run eslint",
|
|
"prettier": "prettier --check . --config ./.prettierrc --ignore-path ./.prettierignore",
|
|
"prettier:fix": "prettier --write . --config ./.prettierrc --ignore-path ./.prettierignore",
|
|
"verify": "node scripts/verify.mjs",
|
|
"verify:web": "node scripts/verify.mjs --workspace=web",
|
|
"verify:changed": "node scripts/verify.mjs --changed",
|
|
"verify:changed:web": "node scripts/verify.mjs --changed --workspace=web",
|
|
"postinstall": "husky"
|
|
},
|
|
"resolutions": {
|
|
"motion": "12.34.0",
|
|
"@ledgerhq/context-module/ethers": "6.14.3",
|
|
"@gnosis.pm/zodiac/ethers": "6.14.3",
|
|
"@ledgerhq/device-signer-kit-ethereum/ethers": "6.14.3",
|
|
"@cowprotocol/events": "1.3.0",
|
|
"@ethersproject/signing-key/elliptic": "^6.6.1",
|
|
"stylus": "0.64.0",
|
|
"viem": "2.21.55",
|
|
"webpack": "5.97.1",
|
|
"react-native-quick-base64": "2.2.2",
|
|
"@tamagui/image@npm:2.0.0-rc.26": "patch:@tamagui/image@npm%3A2.0.0-rc.26#~/.yarn/patches/@tamagui-image-npm-2.0.0-rc.26-04087a216c.patch"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/builder-webpack5": "^10.2.6",
|
|
"@storybook/react": "^10.2.6",
|
|
"ajv": "^8.18.0",
|
|
"ajv-formats": "^3.0.1",
|
|
"husky": "^9.1.6",
|
|
"lint-staged": "^16.2.7",
|
|
"msw": "^2.7.3",
|
|
"prettier": "^3.6.2",
|
|
"storybook": "^10.2.7",
|
|
"turbo": "^2.9.6"
|
|
},
|
|
"dependenciesMeta": {
|
|
"cypress": {
|
|
"built": true
|
|
},
|
|
"next": {
|
|
"built": true
|
|
}
|
|
},
|
|
"packageManager": "yarn@4.12.0",
|
|
"dependencies": {
|
|
"@yarnpkg/types": "^4.0.1"
|
|
},
|
|
"msw": {
|
|
"workerDirectory": [
|
|
"apps/web/public"
|
|
]
|
|
}
|
|
}
|