chore: update expo-doctor to version 1.17.0 and reorganize scripts in package.json

This commit is contained in:
Uruk
2025-08-28 00:51:45 +02:00
parent a3c3094e21
commit 2c8c7120e0
2 changed files with 9 additions and 7 deletions

View File

@@ -6,17 +6,19 @@
"submodule-reload": "git submodule update --init --remote --recursive",
"clean": "echo y | expo prebuild --clean",
"start": "bun run submodule-reload && expo start",
"prebuild": "cross-env EXPO_TV=0 bun run clean",
"prebuild:tv": "cross-env EXPO_TV=1 bun run clean",
"ios": "cross-env EXPO_TV=0 expo run:ios",
"ios:tv": "cross-env EXPO_TV=1 expo run:ios",
"android": "cross-env EXPO_TV=0 expo run:android",
"android:tv": "cross-env EXPO_TV=1 expo run:android",
"prebuild": "cross-env EXPO_TV=0 bun run clean",
"prebuild:tv": "cross-env EXPO_TV=1 bun run clean",
"build:android:local": "cd android && cross-env NODE_ENV=production ./gradlew assembleRelease",
"prepare": "husky",
"check": "biome check . --max-diagnostics 1000",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "biome check . --max-diagnostics 1000 && bun run typecheck",
"lint": "biome check --write --unsafe --max-diagnostics 1000",
"format": "biome format --write ."
"format": "biome format --write .",
"doctor": "expo-doctor"
},
"dependencies": {
"@bottom-tabs/react-navigation": "^0.9.2",
@@ -44,7 +46,6 @@
"expo-constants": "~17.1.5",
"expo-dev-client": "^5.2.0",
"expo-device": "~7.1.4",
"expo-doctor": "^1.13.5",
"expo-font": "~13.3.1",
"expo-haptics": "~14.1.4",
"expo-image": "~2.4.0",
@@ -108,6 +109,7 @@
"@types/lodash": "^4.17.15",
"@types/react": "~19.0.10",
"@types/react-test-renderer": "^19.0.0",
"expo-doctor": "^1.17.0",
"cross-env": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",