-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.03 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
82
{
"name": "finance-app",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"dev": "APP_VARIANT=development expo start --dev-client",
"dev:prd": "DATA_SOURCE=production npm run dev",
"start:wsl2": "REACT_NATIVE_PACKAGER_HOSTNAME=$(ipconfig.exe | grep -a 'Wi-Fi' -A 7 | cut -d\":\" -f 2 | tail -n1 | sed -e 's/\\s*//g') expo start",
"prebuild": "expo prebuild",
"build:development": "eas build --profile development",
"build:production": "eas build --profile production",
"update:production": "eas update --channel production",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint --ext .tsx --ext .ts ./src/",
"format": "prettier --check ./src"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.2",
"@expo/metro-config": "~0.18.11",
"@gorhom/bottom-sheet": "^4.4.5",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-firebase/app": "^20.3.0",
"@react-native-firebase/auth": "^20.3.0",
"@react-native-firebase/firestore": "^20.3.0",
"@react-native-google-signin/google-signin": "^12.2.1",
"@react-navigation/bottom-tabs": "^6.5.2",
"@react-navigation/native": "^6.1.0",
"@react-navigation/native-stack": "^6.9.5",
"@shopify/react-native-skia": "1.2.3",
"apisauce": "^2.1.6",
"expo": "^51.0.31",
"expo-dev-client": "~4.0.26",
"expo-font": "~12.0.10",
"expo-local-authentication": "~14.0.1",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.24",
"jwt-decode": "^3.1.2",
"moment": "^2.18.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-base64": "^0.2.1",
"react-native-dotenv": "^3.4.6",
"react-native-gesture-handler": "~2.16.1",
"react-native-pager-view": "6.3.0",
"react-native-pluggy-connect": "^1.1.0",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-svg-transformer": "^1.3.0",
"react-native-tab-view": "^3.4.0",
"react-native-toast-message": "^2.1.5",
"react-native-uuid": "^2.0.2",
"react-native-web": "~0.19.10",
"react-native-webview": "13.8.6",
"styled-components": "^5.3.6",
"victory-native": "^37.0.3-next.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@types/react": "~18.2.79",
"@types/react-native": "~0.70.6",
"@types/react-native-base64": "^0.2.0",
"@types/react-native-dotenv": "^0.2.0",
"@types/styled-components-react-native": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.29.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.1",
"typescript": "^5.3.3"
},
"private": true
}