-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 3.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "expo-router-supabase-social-auth",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "expo start --dev-client --clear",
"prebuild": "expo prebuild --clean",
"android": "expo run:android",
"ios": "expo run:ios",
"doctor": "npx expo-doctor",
"start:staging": "APP_ENV=staging expo start --dev-client",
"prebuild:staging": "APP_ENV=staging expo prebuild",
"android:staging": "APP_ENV=staging expo run:android",
"ios:staging": "APP_ENV=staging expo run:ios",
"start:production": "NODE_ENV=production APP_ENV=production expo start --dev-client",
"prebuild:production": "NODE_ENV=production APP_ENV=production expo prebuild --clean",
"android:production": "NODE_ENV=production APP_ENV=production expo run:android",
"ios:production": "NODE_ENV=production APP_ENV=production expo run:ios",
"build:development:ios": "APP_ENV=development eas build --profile development --platform ios",
"build:development:android": "APP_ENV=development eas build --profile development --platform android",
"build:staging:ios": "APP_ENV=staging eas build --profile staging --platform ios",
"build:staging:android": "APP_ENV=staging eas build --profile staging --platform android",
"build:production:ios": "NODE_ENV=production APP_ENV=production eas build --profile production --platform ios",
"build:production:android": "NODE_ENV=production APP_ENV=production eas build --profile production --platform android",
"lint": "next lint",
"prettier": "prettier --write '**/*.{js,ts,tsx}'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-navigation/drawer": "6.6.3",
"@supabase/supabase-js": "2.26.0",
"app-icon-badge": "0.0.12",
"dotenv": "16.3.1",
"expo": "^49.0.3",
"expo-application": "~5.3.0",
"expo-build-properties": "~0.8.3",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.6",
"expo-linking": "~5.0.2",
"expo-router": "2.0.0",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.4",
"expo-status-bar": "~1.6.0",
"expo-system-ui": "2.4.0",
"expo-web-browser": "~12.3.2",
"jwt-decode": "3.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.3",
"react-native-gesture-handler": "~2.12.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-url-polyfill": "1.3.0",
"styled-components": "5.3.8",
"typescript": "5.1.6",
"zod": "3.21.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@ianvs/prettier-plugin-sort-imports": "4.0.2",
"@types/react": "~18.2.14",
"@types/react-native": "0.72.2",
"@types/styled-components": "5.1.26",
"@types/styled-components-react-native": "5.2.1",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"babel-plugin-styled-components": "2.1.4",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.0.0",
"prettier": "2.8.8"
}
}