This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
{
"name": "student-scoop",
"version": "0.0.1",
"author": "Student Scoop",
"description": "Official mobile app for Student Scoop",
"license": "AGPL-3.0",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "npx expo start",
"android": "npx expo run:android -d",
"ios": "npx expo run:ios",
"doctor": "npx expo doctor",
"dev-build": "eas build --profile development --platform android --local",
"prettier": "prettier --check \"src/**/*.{ts,tsx,js,jsx}\"",
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx}\""
},
"dependencies": {
"@react-native-google-signin/google-signin": "^11.0.0",
"@react-native-masked-view/masked-view": "^0.3.1",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/material-bottom-tabs": "^6.2.19",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-query-devtools": "^5.28.10",
"axios": "^1.6.3",
"expo": "~49.0.15",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.12",
"expo-device": "~5.4.0",
"expo-file-system": "~15.4.5",
"expo-font": "~11.4.0",
"expo-haptics": "^12.8.1",
"expo-image-picker": "~14.3.2",
"expo-linear-gradient": "~12.3.0",
"expo-linking": "~5.0.2",
"expo-notifications": "~0.20.1",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"lucide-react-native": "^0.303.0",
"mime": "^4.0.1",
"react": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-native": "0.72.6",
"react-native-animated-nav-tab-bar": "^3.1.10",
"react-native-circular-progress-indicator": "^4.4.2",
"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-simple-toast": "^3.3.0",
"react-native-svg": "13.9.0",
"react-native-toast-message": "^2.2.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.14",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-expo": "^9.5.2",
"prettier": "^3.2.4",
"typescript": "^5.1.3"
}
}