Updated librairies

This commit is contained in:
keplyx 2020-02-05 10:25:19 +01:00
parent aa3acf42df
commit 878ff1b308
3 changed files with 15 additions and 9 deletions

View file

@ -9,6 +9,7 @@ Pensez à garder l'appli à jour pour profiter des dernières fonctionnalités !
- Affichage de l'événement de l'accueil directement au clic, au lieu de juste amener sur la liste - Affichage de l'événement de l'accueil directement au clic, au lieu de juste amener sur la liste
- _Notes de développement :_ - _Notes de développement :_
- Passage de React Navigation 3 à 4 - Passage de React Navigation 3 à 4
- Mise à jour d'autres librairies
- **v1.4.0** - _01/02/2020_ - **v1.4.0** - _01/02/2020_
- Correction d'un crash lors du rafraichissement de planex - Correction d'un crash lors du rafraichissement de planex

View file

@ -2,5 +2,10 @@ module.exports = function(api) {
api.cache(true); api.cache(true);
return { return {
presets: ['babel-preset-expo'], presets: ['babel-preset-expo'],
env: {
production: {
plugins: ['react-native-paper/babel'],
},
},
}; };
}; };

View file

@ -8,6 +8,7 @@
"eject": "expo eject" "eject": "expo eject"
}, },
"dependencies": { "dependencies": {
"@react-native-community/masked-view": "0.1.5",
"expo": "^36.0.0", "expo": "^36.0.0",
"expo-font": "~8.0.0", "expo-font": "~8.0.0",
"expo-linear-gradient": "~8.0.0", "expo-linear-gradient": "~8.0.0",
@ -21,24 +22,23 @@
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz", "react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz",
"react-native-app-intro-slider": "^3.0.0", "react-native-app-intro-slider": "^3.0.0",
"react-native-autolink": "^1.8.1", "react-native-autolink": "^1.8.1",
"react-native-calendars": "^1.212.0", "react-native-calendars": "^1.260.0",
"react-native-material-menu": "^0.6.7", "react-native-gesture-handler": "~1.5.0",
"react-native-material-menu": "^1.0.0",
"react-native-modalize": "^1.3.6", "react-native-modalize": "^1.3.6",
"react-native-paper": "^3.5.1", "react-native-paper": "^3.5.1",
"react-native-platform-touchable": "^1.1.1", "react-native-platform-touchable": "^1.1.1",
"react-native-reanimated": "~1.4.0",
"react-native-render-html": "^4.1.2", "react-native-render-html": "^4.1.2",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-status-bar-height": "^2.3.1", "react-native-status-bar-height": "^2.3.1",
"react-native-webview": "7.4.3", "react-native-webview": "7.4.3",
"react-navigation": "^4.1.0", "react-navigation": "^4.1.0",
"react-navigation-drawer": "^2.3.3", "react-navigation-drawer": "^2.3.3",
"react-navigation-material-bottom-tabs": "^1.1.1", "react-navigation-material-bottom-tabs": "^2.1.5",
"react-navigation-stack": "^2.1.0", "react-navigation-stack": "^2.1.0",
"react-navigation-transitions": "^1.0.12", "react-navigation-transitions": "^1.0.12"
"react-native-gesture-handler": "~1.5.0",
"react-native-reanimated": "~1.4.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-safe-area-context": "0.6.0",
"@react-native-community/masked-view": "0.1.5"
}, },
"devDependencies": { "devDependencies": {
"babel-preset-expo": "^8.0.0" "babel-preset-expo": "^8.0.0"