-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 6.28 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 6.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "snapbiodata",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "react-native start",
"reset": "yarn node:clean && yarn android:clean && yarn start --reset-cache",
"android:clean": "rm -rf android/app/.cxx android/app/build android/build android/.gradle && cd android && ./gradlew clean || true",
"android:dev": "ENVFILE=.env.development yarn android:build:dev && yarn android:install:dev",
"android:build:dev": "cd android && ./gradlew assembleDevelopmentDebug",
"android:install:dev": "cd android && ./gradlew installDevelopmentDebug",
"android:dev-release": "ENVFILE=.env.development cd android && ./gradlew assembleDevelopmentRelease && ./gradlew installDevelopmentRelease",
"android:staging": "ENVFILE=.env.staging yarn android:build:staging && yarn android:install:staging",
"android:build:staging": "cd android && ./gradlew assembleStagingDebug",
"android:install:staging": "cd android && ./gradlew installStagingDebug",
"android:staging-release": "ENVFILE=.env.staging cd android && ./gradlew assembleStagingRelease && ./gradlew installStagingRelease",
"android:prod": "ENVFILE=.env.production yarn android:build:prod && yarn android:install:prod",
"android:build:prod": "cd android && ./gradlew assembleProductionDebug",
"android:install:prod": "cd android && ./gradlew installProductionDebug",
"android:prod-release": "ENVFILE=.env.production cd android && ./gradlew assembleProductionRelease && ./gradlew installProductionRelease",
"ios:dev": "ENVFILE=.env.development react-native run-ios --scheme development",
"ios:dev-release": "yarn ios:clean && ENVFILE=.env.development react-native run-ios --scheme development --configuration Release",
"ios:staging": "ENVFILE=.env.staging react-native run-ios --scheme staging",
"ios:staging-release": "yarn ios:clean && ENVFILE=.env.staging react-native run-ios --scheme staging --configuration Release",
"ios:prod": "ENVFILE=.env.production react-native run-ios --scheme production",
"ios:prod-release": "yarn ios:clean && yarn ios:bundle:assets && ENVFILE=.env.production react-native run-ios --scheme production --configuration Release",
"eas": "cat docs/EAS.md",
"eas:help": "cat docs/EAS.md",
"eas:version:get": "node scripts/eas-version.js get",
"eas:version:check": "node scripts/eas-version.js check",
"eas:build": "yarn eas:version:check && eas build --platform all --profile production",
"eas:build:development": "yarn eas:version:check && eas build --platform all --profile development",
"eas:build:staging": "yarn eas:version:check && eas build --platform all --profile staging",
"eas:build:production": "yarn eas:version:check && eas build --platform all --profile production",
"eas:build:android": "yarn eas:version:check && eas build --platform android --profile production",
"eas:build:android:development": "yarn eas:version:check && eas build --platform android --profile development",
"eas:build:android:staging": "yarn eas:version:check && eas build --platform android --profile staging",
"eas:build:android:production": "yarn eas:version:check && eas build --platform android --profile production",
"eas:build:ios": "yarn eas:version:check && eas build --platform ios --profile production",
"eas:build:ios:development": "yarn eas:version:check && eas build --platform ios --profile development",
"eas:build:ios:staging": "yarn eas:version:check && eas build --platform ios --profile staging",
"eas:build:ios:production": "yarn eas:version:check && eas build --platform ios --profile production",
"eas:submit": "eas submit --platform all --latest --profile production",
"eas:submit:development": "eas submit --platform all --latest --profile development",
"eas:submit:staging": "eas submit --platform all --latest --profile staging",
"eas:submit:production": "eas submit --platform all --latest --profile production",
"eas:submit:android": "eas submit --platform android --latest --profile production",
"eas:submit:android:development": "eas submit --platform android --latest --profile development",
"eas:submit:android:staging": "eas submit --platform android --latest --profile staging",
"eas:submit:android:production": "eas submit --platform android --latest --profile production",
"eas:submit:ios": "eas submit --platform ios --latest --profile production",
"eas:submit:ios:development": "eas submit --platform ios --latest --profile development",
"eas:submit:ios:staging": "eas submit --platform ios --latest --profile staging",
"eas:submit:ios:production": "eas submit --platform ios --latest --profile production",
"eas:update": "eas update --channel production --message \"${MESSAGE:-OTA update}\"",
"eas:update:development": "eas update --channel development --message \"${MESSAGE:-OTA update}\"",
"eas:update:staging": "eas update --channel staging --message \"${MESSAGE:-OTA update}\"",
"eas:update:production": "eas update --channel production --message \"${MESSAGE:-OTA update}\""
},
"dependencies": {
"@react-native-async-storage/async-storage": "^2.2.0",
"expo": "^54.0.0",
"expo-updates": "^29.0.12",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-config": "^1.6.1",
"react-native-fast-image": "^8.6.3",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "4.18.0",
"react-native-webview": "13.15.0",
"reactotron-react-native": "^5.1.9"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.81.5",
"@react-native/eslint-config": "0.81.5",
"@react-native/gradle-plugin": "0.81.5",
"@react-native/metro-config": "0.81.5",
"@react-native/typescript-config": "0.81.5",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.0",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"jest": "^29.7.0",
"lefthook": "^1.8.1",
"prettier": "2.8.8",
"react-test-renderer": "19.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}