-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "deliveroo-delivery-application-clone",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"@reduxjs/toolkit": "^1.8.5",
"@sanity/client": "^3.4.1",
"@sanity/image-url": "^1.0.1",
"expo": "^52.0.0",
"expo-status-bar": "~2.0.1",
"expo-updates": "~0.26.12",
"metro": "^0.81.0",
"metro-config": "^0.81.0",
"metro-react-native-babel-preset": "^0.77.0",
"react": "18.3.1",
"react-currency-formatter": "^1.1.0",
"react-native": "0.76.6",
"react-native-animatable": "^1.3.3",
"react-native-heroicons": "^3.2.0",
"react-native-maps": "1.18.0",
"react-native-progress": "^5.0.0",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "15.8.0",
"react-redux": "^8.0.4",
"tailwindcss-react-native": "^1.7.10"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@react-native-community/cli": "latest",
"tailwindcss": "^3.1.8"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"react-native-maps",
"react-native-heroicons",
"@sanity/client",
"@sanity/image-url",
"metro",
"metro-config",
"metro-react-native-babel-preset",
"react-currency-formatter",
"tailwindcss-react-native"
],
"listUnknownPackages": false
}
}
}
}