-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
83 lines (83 loc) · 3.67 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
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
{
"name": "starter",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"clean:node": "yarn start --reset-cache",
"start": "react-native start",
"postinstall": "jetify",
"ios14": "react-native run-ios --simulator=\"iPhone 14\"",
"ios8": "react-native run-ios --simulator=\"iPhone 8\"",
"ios8p": "react-native run-ios --simulator=\"iPhone 8 Plus\"",
"ios11promax": "react-native run-ios --simulator=\"iPhone 11 Pro Max\"",
"release:android": "cd android && ./gradlew assembleRelease",
"clean:android": "cd android && ./gradlew clean",
"release:play": "cd android && ./gradlew bundleRelease",
"pod:install": "cd ios && pod install",
"test:apk": "react-native run-android --variant=release",
"android_dev_debug": "react-native run-android --variant=devDebug --appIdSuffix=dev",
"android_staging_debug": "react-native run-android --variant=stagingDebug --appIdSuffix=staging",
"android_prod_debug": "react-native run-android --variant=prodDebug --appIdSuffix=prod",
"android_apk_dev": "cd android && ./gradlew clean && ./gradlew assembleDevRelease",
"android_staging_dev": "cd android && ./gradlew clean && ./gradlew assembleStagingRelease",
"android_prod_dev": "cd android && ./gradlew clean && ./gradlew assembleProdRelease",
"deploy_dev": "appcenter codepush release-react -a parategirish50-gmail.com/Starter-App -d Dev",
"deply_stageing": "appcenter codepush release-react -a parategirish50-gmail.com/Starter-App -d Staging",
"deply_prod": "appcenter codepush release-react -a parategirish50-gmail.com/Starter-App -d Production",
"ios_deploy_stageing": "appcenter codepush release-react -a parategirish50-gmail.com/Starter-App-iOS -d Staging",
"ios_deploy_prod": "appcenter codepush release-react -a parategirish50-gmail.com/Starter-App-iOS -d Production"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4",
"@react-native-community/async-storage": "^1.11.0",
"@react-native-community/masked-view": "^0.1.6",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/elements": "^1.3.17",
"@react-navigation/material-top-tabs": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"@reduxjs/toolkit": "^1.9.5",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-redux": "^7.1.16",
"@types/redux-thunk": "^2.1.0",
"appcenter-cli": "^2.10.8",
"axios": "^0.21.1",
"i18next": "^19.6.2",
"moment": "^2.27.0",
"react": "17.0.2",
"react-i18next": "^11.7.0",
"react-native": "0.68.5",
"react-native-animatable": "1.3.3",
"react-native-code-push": "^7.0.4",
"react-native-encrypted-storage": "^2.1.0",
"react-native-gesture-handler": "^1.5.3",
"react-native-localize": "^1.4.0",
"react-native-paper": "^5.5.2",
"react-native-reanimated": "^2.13.0",
"react-native-restart": "^0.0.24",
"react-native-safe-area-context": "4.1.2",
"react-native-screens": "2.15.2",
"react-native-svg": "^11.0.1",
"react-native-tab-view": "^3.5.1",
"react-native-vector-icons": "^9.2.0",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"tsyringe": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/runtime": "^7.10.2",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.2.0",
"jest": "^26.0.1",
"metro-react-native-babel-preset": "^0.59.0",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "16.11.0"
}
}