-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.82 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"dependencies": {
"@react-native-community/async-storage": "^1.5.1",
"@react-native-firebase/analytics": "^0.1.5",
"@react-native-firebase/app": "^0.1.5",
"@react-native-firebase/auth": "^0.1.5",
"@react-native-firebase/config": "^0.1.5",
"@react-native-firebase/crashlytics": "^0.1.5",
"@rematch/core": "^1.1.0",
"@rematch/persist": "^1.1.6",
"bluebird": "^3.5.5",
"color-convert": "^2.0.0",
"formik": "^1.5.8",
"i18next": "^17.0.6",
"immer": "^3.1.3",
"lodash": "^4.17.14",
"native-base": "^2.12.2",
"react": "16.8.6",
"react-i18next": "^10.11.4",
"react-native": "0.60.4",
"react-native-code-push": "^5.6.1",
"react-native-exception-handler": "^2.10.8",
"react-native-fbsdk": "^1.0.1",
"react-native-google-signin": "^2.0.0",
"react-native-navigation": "3.0.0-alpha.2",
"react-native-orientation": "^3.1.3",
"react-native-picker": "^4.3.7",
"react-native-root-toast": "^3.1.2",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "^6.6.0",
"react-redux": "^7.1.0",
"redux-persist": "^5.10.0",
"rn-tooltip": "^1.2.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"@testing-library/react-native": "^4.0.7",
"@types/bluebird": "^3.5.27",
"@types/color-convert": "^1.9.0",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.2",
"@types/react": "^16.8.23",
"@types/react-native": "^0.60.0",
"@types/react-native-fbsdk": "^0.7.0",
"@types/react-native-orientation": "^5.0.1",
"@types/react-native-vector-icons": "^6.4.1",
"@types/react-redux": "^7.1.1",
"@types/react-test-renderer": "^16.8.2",
"@types/yup": "^0.26.22",
"@typescript-eslint/parser": "2.0.0-alpha.4",
"add": "^2.0.6",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.8.0",
"jetifier": "^1.6.3",
"metro-react-native-babel-preset": "^0.55.0",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"react-test-renderer": "16.8.6",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"yarn": "^1.17.3"
},
"name": "mobile",
"pre-commit": [
"prettier",
"validate"
],
"private": true,
"repository": {
"type": "git"
},
"scripts": {
"android": "react-native run-android",
"android:alpha": "npx jetify && bundle exec fastlane android alpha",
"android:build": "npx jetify && bundle exec fastlane android build",
"android:clean": "cd android && ./gradlew clean --stacktrace && cd ..",
"android:codepush": "appcenter codepush release-react -a app-name-android",
"android:codepush:prod": "appcenter codepush promote -a app-name-android -s Staging -d Production ",
"android:emulator": "${HOME}/Library/Android/sdk/emulator/emulator -avd android-emulator",
"android:production": "npx jetify && bundle exec fastlane android production",
"android:release": "npx jetify && cd android && ./gradlew bundleRelease --stacktrace && cd ..",
"android:release-apk": "npx jetify && cd android && ./gradlew assembleRelease --stacktrace && cd ..",
"android:release-test": "react-native run-android --variant release",
"code-check": "tsc && rm -rf dist",
"ios": "react-native run-ios",
"ios:build": "bundle exec fastlane ios build",
"ios:codepush": "code-push release-react app-name-android",
"ios:codepush:prod": "appcenter codepush promote -a app-name-ios -s Staging -d Production ",
"ios:emulator": "open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/",
"ios:production": "bundle exec fastlane ios production",
"ios:release-test": "react-native run-ios --configuration Release",
"ios:testflight": "bundle exec fastlane ios uploadToTestflight",
"job": "ts-node job.ts",
"lint": "eslint '{src,__tests__}/**/**.{ts,tsx}' && prettier --check '{src,__{tests,mocks}__}/**/*.{ts,tsx}'",
"lint-fix": "prettier --write '{src,__{tests,mocks}__}/**/*.{ts,tsx}' && eslint '{src,__tests__}/**/**.{ts,tsx}' --fix",
"prettier": "prettier --write '{src,__{tests,mocks}__}/**/*.{ts,tsx}'",
"start": "yarn lint && yarn code-check && node node_modules/react-native/local-cli/cli.js start",
"test": "jest --detectOpenHandles",
"update-icon": "./generate_icons.sh",
"update-version": "ts-node job.ts update-version",
"validate": "yarn lint && yarn code-check && yarn test"
},
"version": "1.2.0"
}