Files
safe-wallet/package.json
T
defd17df3b feat(mobile): upgrade Expo SDK to v55 (#7433)
* feat(mobile): upgrade Expo SDK to v55

Upgrade Expo SDK from v54 to v55, along with React Native 0.83.4,
React 19.2, and all related dependencies.

Key changes:
- Refactored @safe-global/theme to use sub-path exports to fix RN
  import resolution issues
- Added react-native patch for Appearance.setColorScheme bug
  (facebook/react-native#08d176453) not yet in 0.83.4 release
- Replaced Tamagui Skeleton with custom SafeSkeleton component
- Updated expo config plugins for SDK 55 compatibility

Co-authored-by: Hanzo Dev <dev@hanzo.ai>

* fix: downgrade eslint-config-next to v15 to match next.js version

eslint-config-next v16 requires next v16 but the project uses next
v15.5.8. The v16 package tries to import next/dist/compiled/babel/
eslint-parser which doesn't exist in next v15.

Co-authored-by: Hanzo Dev <dev@hanzo.ai>

* fix: migrate packages away from eslint-config-next

eslint-config-next requires next at runtime for its babel parser,
but next is only installed in apps/web. After the Expo SDK v55
upgrade changed dependency hoisting, the parser became unreachable.

- Create shared config/eslint/base.mjs using direct plugin imports
- Migrate store, theme, utils, and tx-builder to the shared config
- Add packageExtensions in .yarnrc.yml so eslint-config-next in
  apps/web can still resolve next as a peer dependency

Co-authored-by: Hanzo Dev <dev@hanzo.ai>

* chore: align react 19.2 across workspaces and fix MUI peer dep

- Bump react/react-dom to 19.2.0 in web and tx-builder to match
  mobile
- Add @mui/material as optional peer dependency in theme package to
  avoid duplicate installations causing type conflicts

Co-authored-by: Hanzo Dev <dev@hanzo.ai>

* chore(mobile): update storybook on mobile to v10

* fix(web): resolve @emotion/react hoisting issue after Expo SDK 55 upgrade

Yarn 4's node-modules hoisting shifted after dependency graph changes,
leaving @emotion/react only in apps/web/node_modules while @mui/styled-engine
remained at root. Add webpack resolve aliases to ensure Next.js finds emotion
packages from the web workspace.

Co-authored-by: Hanzo Dev <dev@hanzo.ai>

* fix(web): resolve @emotion hoisting issue in Jest config

Same hoisting fix as next.config.mjs but for Jest's module resolution.
Add moduleNameMapper entries for @emotion/react and @emotion/styled.

Co-authored-by: Hanzo Dev <dev@hanzo.ai>

* fix(tx-builder): prettier

* fix: resolve type-check errors after Expo SDK 55 upgrade

- Fix BlurView tint prop: map ColorSchemeName to valid BlurTint values
- Replace @storybook/test imports with storybook/test (merged in v10)
- Align @types/react (~19.2.10) and @types/react-dom (~19.2.0) across
  all workspaces to prevent duplicate @mui/material type mismatches
- Spread visuallyHidden into sx prop for @types/react 19.2.x compat
- Add @types/react, @types/react-dom, storybook to yarn version checker

Co-authored-by: Hanzo Dev <dev@hanzo.ai>

* chore: align more dependencies

* chore(web): update storybook snapshot

* fix(mobile): normalize color scheme and deduplicate MUI/emotion packages

- Normalize useTheme colorScheme to 'light' | 'dark', never 'unspecified'
  so TamaguiProvider always receives a valid theme name
- Update ColorScheme type to exclude 'unspecified'
- Remove redundant ?? 'light' fallbacks in SafeThemeProvider
- Align @emotion/* and @mui/icons-material versions across workspaces
  to prevent Yarn from creating duplicate lockfile resolutions
- Remove emotion webpack/Jest aliases (no longer needed after dedup)
- Add @emotion/react, @emotion/styled, @mui/material, @mui/icons-material
  to yarn version consistency checker

Co-authored-by: Hanzo Dev <dev@hanzo.ai>

---------

Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2026-03-18 09:29:16 +01:00

60 lines
1.6 KiB
JSON

{
"private": true,
"name": "@safe-global/safe-wallet",
"version": "1.0.1",
"workspaces": [
"expo-plugins/*",
"apps/*",
"config/*",
"packages/*",
"tools/codemods/*"
],
"scripts": {
"lint": "yarn workspaces foreach --all -pt run lint",
"type-check": "yarn workspaces foreach --all -pt run type-check",
"test": "yarn workspaces foreach --all -pt 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",
"postinstall": "husky"
},
"resolutions": {
"@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",
"@tamagui/static/react-native-web": "0.21.1"
},
"devDependencies": {
"@storybook/builder-webpack5": "^10.2.6",
"@storybook/react": "^10.2.6",
"husky": "^9.1.6",
"lint-staged": "^16.2.7",
"msw": "^2.7.3",
"prettier": "^3.6.2",
"storybook": "^10.2.7"
},
"dependenciesMeta": {
"cypress": {
"built": true
},
"next": {
"built": true
}
},
"packageManager": "yarn@4.12.0",
"dependencies": {
"@yarnpkg/types": "^4.0.1"
},
"msw": {
"workerDirectory": [
"apps/web/public"
]
}
}