Skip to content

Commit

Permalink
chore: added dep checker and increased version
Browse files Browse the repository at this point in the history
Signed-off-by: sarthakpranesh <sarthakpranesh08@gmail.com>
  • Loading branch information
sarthakpranesh committed Dec 11, 2022
1 parent 83802c1 commit 1cc5d9f
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 98 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ android {
applicationId "com.plantrecog"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 32
versionName "1.4.0"
versionCode 33
versionName "1.4.1"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()

if (isNewArchitectureEnabled()) {
Expand Down
36 changes: 29 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"name": "PlantRecog",
"version": "1.4.0",
"version": "1.4.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"start": "react-native start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"clean": "cd android && ./gradlew clean",
"postinstall": "patch-package"
"postinstall": "patch-package",
"check-dependencies": "rnx-align-deps",
"fix-dependencies": "rnx-align-deps --write"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4",
Expand All @@ -18,28 +20,48 @@
"deprecated-react-native-prop-types": "^2.3.0",
"patch-package": "^6.4.7",
"react": "18.1.0",
"react-native": "0.70.3",
"react-native": "^0.70.0",
"react-native-bootsplash": "^4.3.2",
"react-native-camera": "^4.2.1",
"react-native-gesture-handler": "^2.7.0",
"react-native-gesture-handler": "^2.6.0",
"react-native-image-picker": "^4.10.0",
"react-native-reanimated": "^2.11.0",
"react-native-reanimated": "^2.10.0",
"react-native-responsive-fontsize": "^0.5.1",
"react-native-svg": "^13.1.0"
"react-native-svg": "^12.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@rnx-kit/align-deps": "^2.0.1",
"@types/react-native": "^0.69.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.24.0",
"eslint-config-universe": "^11.1.0",
"metro-react-native-babel-preset": "^0.72.3",
"metro-react-native-babel-preset": "^0.72.1",
"prettier": "^2.7.1",
"react-test-renderer": "18.1.0",
"typescript": "^4.8.4"
},
"rnx-kit": {
"kitType": "app",
"alignDeps": {
"requirements": [
"react-native@0.70"
],
"capabilities": [
"animation",
"babel-preset-react-native",
"core",
"core-android",
"core-ios",
"gestures",
"react",
"react-test-renderer",
"svg"
]
}
}
}
File renamed without changes.
Loading

0 comments on commit 1cc5d9f

Please sign in to comment.