Compare commits
No commits in common. "05ef28f3b5cd7793e8d12a3e2d6606ebc6172c15" and "7a134c7906a5182211e6825af18e07231ffdf68e" have entirely different histories.
05ef28f3b5
...
7a134c7906
10 changed files with 51 additions and 12695 deletions
|
|
@ -1,6 +0,0 @@
|
||||||
|
|
||||||
[android]
|
|
||||||
target = Google Inc.:Google APIs:23
|
|
||||||
|
|
||||||
[maven_repositories]
|
|
||||||
central = https://repo1.maven.org/maven2
|
|
||||||
40
.eslintrc.js
40
.eslintrc.js
|
|
@ -1,40 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
extends: [
|
|
||||||
'airbnb',
|
|
||||||
'plugin:flowtype/recommended',
|
|
||||||
'prettier',
|
|
||||||
'prettier/flowtype',
|
|
||||||
'prettier/react',
|
|
||||||
],
|
|
||||||
parser: 'babel-eslint',
|
|
||||||
plugins: ['flowtype'],
|
|
||||||
env: {
|
|
||||||
jest: true,
|
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
'flowtype/define-flow-type': 1,
|
|
||||||
'flowtype/no-mixed': 2,
|
|
||||||
'flowtype/no-primitive-constructor-types': 2,
|
|
||||||
'flowtype/no-types-missing-file-annotation': 2,
|
|
||||||
'flowtype/no-weak-types': 2,
|
|
||||||
'flowtype/require-parameter-type': 2,
|
|
||||||
'flowtype/require-readonly-react-props': 0,
|
|
||||||
'flowtype/require-return-type': [
|
|
||||||
2,
|
|
||||||
'always',
|
|
||||||
{
|
|
||||||
annotateUndefined: 'never',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'flowtype/require-valid-file-annotation': 2,
|
|
||||||
'flowtype/type-id-match': [2, '^([A-Z][a-z0-9]+)+Type$'],
|
|
||||||
'flowtype/use-flow-type': 1,
|
|
||||||
'flowtype/valid-syntax': 1,
|
|
||||||
},
|
|
||||||
settings: {
|
|
||||||
flowtype: {
|
|
||||||
onlyFilesWithFlowAnnotation: false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
11
.flowconfig
11
.flowconfig
|
|
@ -0,0 +1,11 @@
|
||||||
|
[ignore]
|
||||||
|
|
||||||
|
[include]
|
||||||
|
|
||||||
|
[libs]
|
||||||
|
|
||||||
|
[lints]
|
||||||
|
|
||||||
|
[options]
|
||||||
|
|
||||||
|
[strict]
|
||||||
1
.gitattributes
vendored
1
.gitattributes
vendored
|
|
@ -1 +0,0 @@
|
||||||
*.pbxproj -text
|
|
||||||
28
.gitignore
vendored
28
.gitignore
vendored
|
|
@ -1,3 +1,23 @@
|
||||||
|
node_modules/**/*
|
||||||
|
.expo/*
|
||||||
|
npm-debug.*
|
||||||
|
*.jks
|
||||||
|
*.p12
|
||||||
|
*.key
|
||||||
|
*.mobileprovision
|
||||||
|
*.orig.*
|
||||||
|
web-build/
|
||||||
|
web-report/
|
||||||
|
/.expo-shared/
|
||||||
|
/package-lock.json
|
||||||
|
|
||||||
|
!/.idea/
|
||||||
|
/.idea/*
|
||||||
|
!/.idea/runConfigurations
|
||||||
|
|
||||||
|
# The following contents were automatically generated by expo-cli during eject
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
# OSX
|
# OSX
|
||||||
#
|
#
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
@ -20,6 +40,7 @@ DerivedData
|
||||||
*.hmap
|
*.hmap
|
||||||
*.ipa
|
*.ipa
|
||||||
*.xcuserstate
|
*.xcuserstate
|
||||||
|
project.xcworkspace
|
||||||
|
|
||||||
# Android/IntelliJ
|
# Android/IntelliJ
|
||||||
#
|
#
|
||||||
|
|
@ -39,9 +60,6 @@ yarn-error.log
|
||||||
buck-out/
|
buck-out/
|
||||||
\.buckd/
|
\.buckd/
|
||||||
*.keystore
|
*.keystore
|
||||||
!debug.keystore
|
|
||||||
*.jks
|
|
||||||
/android/gradle.properties
|
|
||||||
|
|
||||||
# fastlane
|
# fastlane
|
||||||
#
|
#
|
||||||
|
|
@ -59,3 +77,7 @@ buck-out/
|
||||||
|
|
||||||
# CocoaPods
|
# CocoaPods
|
||||||
/ios/Pods/
|
/ios/Pods/
|
||||||
|
|
||||||
|
# Expo
|
||||||
|
.expo/*
|
||||||
|
/android/gradle.properties
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
bracketSpacing: false,
|
|
||||||
jsxBracketSameLine: true,
|
|
||||||
singleQuote: true,
|
|
||||||
trailingComma: 'all',
|
|
||||||
};
|
|
||||||
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 111 KiB |
12615
package-lock.json
generated
12615
package-lock.json
generated
File diff suppressed because it is too large
Load diff
39
package.json
39
package.json
|
|
@ -24,9 +24,9 @@
|
||||||
"@react-native-community/masked-view": "^0.1.10",
|
"@react-native-community/masked-view": "^0.1.10",
|
||||||
"@react-native-community/push-notification-ios": "^1.4.0",
|
"@react-native-community/push-notification-ios": "^1.4.0",
|
||||||
"@react-native-community/slider": "^3.0.3",
|
"@react-native-community/slider": "^3.0.3",
|
||||||
"@react-navigation/bottom-tabs": "^5.7.3",
|
"@react-navigation/bottom-tabs": "^5.7.2",
|
||||||
"@react-navigation/native": "^5.7.2",
|
"@react-navigation/native": "^5.7.1",
|
||||||
"@react-navigation/stack": "^5.8.0",
|
"@react-navigation/stack": "^5.7.1",
|
||||||
"i18n-js": "^3.7.1",
|
"i18n-js": "^3.7.1",
|
||||||
"react": "16.13.1",
|
"react": "16.13.1",
|
||||||
"react-native": "0.63.2",
|
"react-native": "0.63.2",
|
||||||
|
|
@ -34,47 +34,38 @@
|
||||||
"react-native-app-intro-slider": "^4.0.4",
|
"react-native-app-intro-slider": "^4.0.4",
|
||||||
"react-native-appearance": "^0.3.4",
|
"react-native-appearance": "^0.3.4",
|
||||||
"react-native-autolink": "^3.0.0",
|
"react-native-autolink": "^3.0.0",
|
||||||
"react-native-calendars": "^1.301.0",
|
"react-native-calendars": "^1.300.0",
|
||||||
"react-native-camera": "^3.35.0",
|
"react-native-camera": "^3.33.0",
|
||||||
"react-native-collapsible": "^1.5.3",
|
"react-native-collapsible": "^1.5.2",
|
||||||
"react-native-gesture-handler": "^1.7.0",
|
"react-native-gesture-handler": "^1.7.0",
|
||||||
"react-native-image-modal": "^1.0.9",
|
"react-native-image-modal": "^1.0.9",
|
||||||
"react-native-keychain": "^6.1.1",
|
"react-native-keychain": "^6.1.1",
|
||||||
"react-native-linear-gradient": "^2.5.6",
|
"react-native-linear-gradient": "^2.5.6",
|
||||||
"react-native-localize": "^1.4.1",
|
"react-native-localize": "^1.4.0",
|
||||||
"react-native-modalize": "^2.0.5",
|
"react-native-modalize": "^2.0.4",
|
||||||
"react-native-paper": "^4.0.1",
|
"react-native-paper": "^4.0.1",
|
||||||
"react-native-permissions": "^2.1.5",
|
"react-native-permissions": "^2.1.5",
|
||||||
"react-native-push-notification": "^4.0.0",
|
"react-native-push-notification": "^4.0.0",
|
||||||
"react-native-reanimated": "^1.10.1",
|
"react-native-reanimated": "^1.10.1",
|
||||||
"react-native-render-html": "^4.2.2",
|
"react-native-render-html": "^4.2.1",
|
||||||
"react-native-safe-area-context": "0.7.3",
|
"react-native-safe-area-context": "0.7.3",
|
||||||
"react-native-screens": "^2.9.0",
|
"react-native-screens": "^2.9.0",
|
||||||
"react-native-splash-screen": "^3.2.0",
|
"react-native-splash-screen": "^3.2.0",
|
||||||
"react-native-vector-icons": "^7.0.0",
|
"react-native-vector-icons": "^7.0.0",
|
||||||
"react-native-webview": "^10.3.3",
|
"react-native-webview": "^10.3.2",
|
||||||
"react-navigation-collapsible": "^5.6.4",
|
"react-navigation-collapsible": "^5.6.4",
|
||||||
"react-navigation-header-buttons": "^5.0.0"
|
"react-navigation-header-buttons": "^4.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.11.0",
|
"@babel/core": "^7.8.4",
|
||||||
"@babel/preset-flow": "^7.10.4",
|
"@babel/runtime": "^7.8.4",
|
||||||
"@babel/runtime": "^7.11.0",
|
"@react-native-community/eslint-config": "^1.1.0",
|
||||||
"babel-eslint": "^10.1.0",
|
|
||||||
"babel-jest": "^25.1.0",
|
"babel-jest": "^25.1.0",
|
||||||
"eslint": "^7.2.0",
|
"eslint": "6.5.1",
|
||||||
"eslint-config-airbnb": "^18.2.0",
|
|
||||||
"eslint-config-prettier": "^6.11.0",
|
|
||||||
"eslint-plugin-flowtype": "^5.2.0",
|
|
||||||
"eslint-plugin-import": "^2.22.0",
|
|
||||||
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
||||||
"eslint-plugin-react": "^7.20.5",
|
|
||||||
"eslint-plugin-react-hooks": "^4.0.0",
|
|
||||||
"flow-bin": "^0.123.0",
|
"flow-bin": "^0.123.0",
|
||||||
"jest": "^25.1.0",
|
"jest": "^25.1.0",
|
||||||
"jest-extended": "^0.11.5",
|
"jest-extended": "^0.11.5",
|
||||||
"metro-react-native-babel-preset": "^0.59.0",
|
"metro-react-native-babel-preset": "^0.59.0",
|
||||||
"prettier": "2.0.5",
|
|
||||||
"react-test-renderer": "16.13.1"
|
"react-test-renderer": "16.13.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue