-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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
{
"name": "bookbay",
"displayName": "BookBay",
"description": "BookBay is a mobile application that allows students to buy and sell books. It is a platform that connects students who want to sell their books with students who want to buy books. The application is designed to be user-friendly and easy to use. It is a great way for students to save money on textbooks and make some extra cash by selling their old books.",
"expo": {
"name": "BookBay",
"slug": "BookBay",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"dependencies": {
"@expo-google-fonts/ubuntu": "^0.2.3",
"@expo/vector-icons": "^14.0.0",
"@react-navigation/bottom-tabs": "^6.5.12",
"@react-navigation/native": "^6.0.6",
"@react-navigation/native-stack": "^6.2.5",
"@react-navigation/stack": "^6.3.21",
"expo": "~51.0.2",
"expo-asset": "~10.0.6",
"expo-font": "~12.0.5",
"expo-splash-screen": "~0.27.4",
"expo-status-bar": "~1.12.1",
"firebase": "^9.6.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.1",
"react-native-rapi-ui": "^0.2.1",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "~0.19.6"
},
"devDependencies": {
"@babel/core": "^7.24.0"
}
}