1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00

build(deps): update React Native and Expo dependencies

This commit is contained in:
Théo LUDWIG 2024-05-20 11:40:38 +02:00
parent b95d466a77
commit 3c0c34d187
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
6 changed files with 3408 additions and 2372 deletions

View File

@ -2,11 +2,9 @@
"extends": [ "extends": [
"conventions", "conventions",
"plugin:react/recommended", "plugin:react/recommended",
"plugin:react-hooks/recommended", "plugin:react-hooks/recommended"
"prettier"
], ],
"ignorePatterns": ["jest.setup.ts"], "ignorePatterns": ["jest.setup.ts"],
"plugins": ["prettier"],
"env": { "env": {
"browser": true, "browser": true,
"node": true, "node": true,
@ -21,7 +19,6 @@
"project": "./tsconfig.json" "project": "./tsconfig.json"
}, },
"rules": { "rules": {
"prettier/prettier": "error",
"react/react-in-jsx-scope": "off", "react/react-in-jsx-scope": "off",
"react/prop-types": "off", "react/prop-types": "off",
"react/self-closing-comp": [ "react/self-closing-comp": [
@ -37,7 +34,10 @@
"overrides": [ "overrides": [
{ {
"files": ["*.ts", "*.tsx"], "files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser" "parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/member-delimiter-style": "off"
}
} }
] ]
} }

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
# dependencies # dependencies
node_modules/ node_modules/
.npm/ .npm/
.temp/
# Expo # Expo
.expo/ .expo/

View File

@ -1,5 +1,5 @@
default: default:
image: "node:20.12.2" image: "node:20.13.1"
stages: stages:
- "test" - "test"

View File

@ -35,7 +35,7 @@ Un tracker d'habitudes pour performer au boulot et dans la vie de tous les jours
- [Node.js](https://nodejs.org/) >= 20.0.0 - [Node.js](https://nodejs.org/) >= 20.0.0
- [npm](https://www.npmjs.com/) >= 10.0.0 - [npm](https://www.npmjs.com/) >= 10.0.0
- [Expo Go](https://expo.io/client) - [Expo Go](https://expo.io/client) ~2.31.0
- [Docker](https://www.docker.com/) (facultatif, utilisé pour lancer [Supabase](https://supabase.io/) en local) - [Docker](https://www.docker.com/) (facultatif, utilisé pour lancer [Supabase](https://supabase.io/) en local)
### Installation ### Installation

5701
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -19,40 +19,39 @@
"postinstall": "husky" "postinstall": "husky"
}, },
"dependencies": { "dependencies": {
"@expo/vector-icons": "14.0.1", "@expo/vector-icons": "14.0.2",
"@fortawesome/fontawesome-svg-core": "6.5.2", "@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-solid-svg-icons": "6.5.2", "@fortawesome/free-solid-svg-icons": "6.5.2",
"@fortawesome/react-native-fontawesome": "0.3.0", "@fortawesome/react-native-fontawesome": "0.3.1",
"@hookform/resolvers": "3.3.4", "@hookform/resolvers": "3.4.0",
"@react-native-async-storage/async-storage": "1.21.0", "@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/native": "6.1.17", "@react-navigation/native": "6.1.17",
"@supabase/supabase-js": "2.43.0", "@supabase/supabase-js": "2.43.2",
"expo": "50.0.17", "expo": "51.0.8",
"expo-font": "11.10.3", "expo-linking": "6.3.1",
"expo-linking": "6.2.2", "expo-router": "3.5.14",
"expo-router": "3.4.10", "expo-splash-screen": "0.27.4",
"expo-splash-screen": "0.26.5", "expo-status-bar": "1.12.1",
"expo-status-bar": "1.11.1", "expo-system-ui": "3.0.4",
"expo-system-ui": "2.9.4", "expo-web-browser": "13.0.3",
"expo-web-browser": "12.8.2",
"immer": "10.1.1", "immer": "10.1.1",
"lottie-react-native": "6.5.1", "lottie-react-native": "6.7.0",
"react": "18.2.0", "react": "18.2.0",
"react-dom": "18.2.0", "react-dom": "18.2.0",
"react-hook-form": "7.51.3", "react-hook-form": "7.51.4",
"react-native": "0.73.6", "react-native": "0.74.1",
"react-native-calendars": "1.1304.1", "react-native-calendars": "1.1305.0",
"react-native-elements": "3.4.3", "react-native-elements": "3.4.3",
"react-native-gesture-handler": "2.14.1", "react-native-gesture-handler": "2.16.2",
"react-native-paper": "5.12.3", "react-native-paper": "5.12.3",
"react-native-reanimated": "3.6.3", "react-native-reanimated": "3.10.1",
"react-native-safe-area-context": "4.8.2", "react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.29.0", "react-native-screens": "3.31.1",
"react-native-url-polyfill": "2.0.0", "react-native-url-polyfill": "2.0.0",
"react-native-vector-icons": "10.0.3", "react-native-vector-icons": "10.1.0",
"react-native-web": "0.19.11", "react-native-web": "0.19.11",
"reanimated-color-picker": "3.0.3", "reanimated-color-picker": "3.0.3",
"zod": "3.23.5" "zod": "3.23.8"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.24.5", "@babel/core": "7.24.5",
@ -62,16 +61,14 @@
"@total-typescript/ts-reset": "0.5.1", "@total-typescript/ts-reset": "0.5.1",
"@tsconfig/strictest": "2.0.5", "@tsconfig/strictest": "2.0.5",
"@types/jest": "29.5.12", "@types/jest": "29.5.12",
"@types/node": "20.12.7", "@types/node": "20.12.12",
"@types/react": "18.2.77", "@types/react": "18.2.79",
"@types/react-test-renderer": "18.0.7", "@types/react-test-renderer": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.8.0", "@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.8.0", "@typescript-eslint/parser": "7.9.0",
"eslint": "8.57.0", "eslint": "8.57.0",
"eslint-config-conventions": "14.1.0", "eslint-config-conventions": "14.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1", "eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1", "eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.34.1", "eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2", "eslint-plugin-react-hooks": "4.6.2",
@ -79,11 +76,12 @@
"eslint-plugin-unicorn": "51.0.1", "eslint-plugin-unicorn": "51.0.1",
"husky": "9.0.11", "husky": "9.0.11",
"jest": "29.7.0", "jest": "29.7.0",
"jest-expo": "50.0.4", "jest-expo": "51.0.2",
"jest-junit": "16.0.0", "jest-junit": "16.0.0",
"lint-staged": "15.2.2", "lint-staged": "15.2.2",
"prettier": "3.2.5",
"react-test-renderer": "18.2.0", "react-test-renderer": "18.2.0",
"supabase": "1.164.1", "supabase": "1.167.4",
"typescript": "5.4.5" "typescript": "5.3.3"
} }
} }