Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 67c6b9c

Browse files
Merge pull request #3 from fptqnk17/feature/integration
Feature/integration
2 parents 04d335d + a9371b4 commit 67c6b9c

29 files changed

+1919
-599
lines changed

@types/env.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module '@env' {
2+
export const SUPABASE_URL: string;
3+
export const SUPABASE_KEY: string;
4+
}

babel.config.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
presets: ['module:metro-react-native-babel-preset'],
3+
plugins: [
4+
[
5+
'module:react-native-dotenv',
6+
{
7+
moduleName: '@env',
8+
path: '.env',
9+
blocklist: null,
10+
allowlist: null,
11+
safe: false,
12+
allowUndefined: true,
13+
verbose: false,
14+
},
15+
],
16+
],
17+
};

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,26 @@
1010
"dependencies": {
1111
"@expo/vector-icons": "14.1.0",
1212
"@react-native-community/datetimepicker": "8.2.0",
13+
"@reduxjs/toolkit": "^2.7.0",
14+
"@supabase/supabase-js": "^2.49.4",
1315
"expo": "52.0.46",
1416
"expo-fast-image": "1.1.3",
17+
"expo-file-system": "~18.0.12",
1518
"expo-image-picker": "16.0.6",
1619
"expo-linking": "7.0.5",
1720
"expo-router": "4.0.20",
1821
"expo-splash-screen": "0.29.24",
1922
"expo-status-bar": "2.0.1",
23+
"metro-react-native-babel-preset": "^0.77.0",
2024
"react": "18.3.1",
2125
"react-dom": "18.3.1",
2226
"react-native": "0.76.9",
27+
"react-native-dotenv": "^3.4.11",
2328
"react-native-modal": "^14.0.0-rc.1",
2429
"react-native-reanimated": "3.16.1",
2530
"react-native-safe-area-context": "4.12.0",
26-
"react-native-screens": "4.4.0"
31+
"react-native-screens": "4.4.0",
32+
"react-redux": "^9.2.0"
2733
},
2834
"devDependencies": {
2935
"@babel/core": "7.26.10",

0 commit comments

Comments
 (0)