-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
38 lines (38 loc) Β· 1.68 KB
/
package.json
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
{
"name": "KeysExample",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"pods": "pod-install --quiet",
"pods-newarch": "cd ios && RCT_NEW_ARCH_ENABLED=1 pod install",
"android-build-assets": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/",
"android-dev": "react-native run-android --variant=developmentDebug --appIdSuffix dev",
"android-dev-kyc": "react-native run-android --variant=developmentDebug",
"ios-dev": "react-native run-ios --scheme=KeysExample-Dev --simulator='iPhone 14'",
"android-staging": "react-native run-android --variant=stagingDebug --appIdSuffix staging",
"android-staging-prod": "react-native run-android --variant=stagingRelease --appIdSuffix staging",
"ios-staging": "react-native run-ios --scheme=KeysExample-Staging --simulator='iPhone 14'",
"android-prod": "react-native run-android --variant=productionRelease",
"ios-prod": "react-native run-ios --scheme=KeysExample-Production",
"android-dev-prod": "react-native run-android --variant=developmentRelease"
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.72.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.9",
"metro-react-native-babel-preset": "0.76.7",
"babel-plugin-module-resolver": "^5.0.0"
},
"engines": {
"node": ">=16"
}
}