|
5 | 5 | "private": true,
|
6 | 6 | "scripts": {
|
7 | 7 | "reset": "react-native-clean-project",
|
| 8 | + "remove-xcode-env-local-file": "rm ios/.xcode.env.local", |
8 | 9 | "start": "yarn with-env npx expo start -c",
|
| 10 | + "lint": "eslint ./app", |
| 11 | + "lint:fix": "eslint ./app --fix", |
| 12 | + "with-env": "dotenv -f .env --", |
9 | 13 | "start:dev-client": "yarn with-env yarn expo:prebuild && yarn expo start --dev-client",
|
10 | 14 | "expo:prebuild": "yarn with-env yarn expo prebuild --skip-dependency-update react-native,react",
|
11 | 15 | "android": "yarn with-env expo run:android",
|
| 16 | + "ios": "yarn with-env expo run:ios", |
12 | 17 | "eas:build:dev:simulator:ios:local": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:simulator --platform ios --local",
|
| 18 | + "eas:build:dev:simulator:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:simulator --platform ios", |
13 | 19 | "eas:build:dev:simulator:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:simulator --platform android",
|
| 20 | + "eas:build:dev:device:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:device --platform ios", |
| 21 | + "eas:build:dev:device:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:device --platform android", |
14 | 22 | "eas:build:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development --platform android",
|
15 |
| - "eas:submit:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas submit --profile staging --platform android", |
16 |
| - "eas:update:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas update --channel staging --platform android", |
| 23 | + "eas:build:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development --platform ios", |
17 | 24 | "eas:build:staging:android": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas build --profile staging --platform android",
|
| 25 | + "eas:build:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas build --profile staging --platform ios", |
| 26 | + "eas:submit:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas submit --profile staging --platform android", |
18 | 27 | "eas:submit:staging:android": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas submit --profile staging --platform android",
|
19 |
| - "eas:update:staging:android": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas update --channel staging --platform android", |
20 |
| - "eas:build:dev:simulator:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:simulator --platform ios", |
21 |
| - "eas:build:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development --platform ios", |
22 |
| - "eas:build:dev:device:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:device --platform ios", |
23 |
| - "eas:build:dev:device:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:device --platform android", |
24 | 28 | "eas:submit:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas submit --profile staging --platform ios",
|
25 |
| - "eas:update:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas update --channel staging --platform ios", |
26 |
| - "eas:build:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas build --profile staging --platform ios", |
27 | 29 | "eas:submit:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas submit --profile staging --platform ios",
|
28 |
| - "eas:update:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas update --channel staging --platform ios", |
29 |
| - "ios": "yarn with-env expo run:ios", |
30 |
| - "with-env": "dotenv -f .env --", |
31 |
| - "lint": "eslint ./app", |
32 |
| - "lint:fix": "eslint ./app --fix", |
33 |
| - "remove-xcode-env-local-file": "rm ios/.xcode.env.local" |
| 30 | + "eas:update:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas update --channel staging --platform android", |
| 31 | + "eas:update:staging:android": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas update --channel staging --platform android", |
| 32 | + "eas:update:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas update --channel staging --platform ios", |
| 33 | + "eas:update:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas update --channel staging --platform ios" |
34 | 34 | },
|
35 | 35 | "dependencies": {
|
36 | 36 | "@babel/runtime": "^7.27.3",
|
|
0 commit comments