create-ern-boilerplate 0.0.24 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -11,28 +11,33 @@
|
|
|
11
11
|
"web": "expo start --web",
|
|
12
12
|
"lint": "eslint .",
|
|
13
13
|
"type-check": "tsc --noEmit",
|
|
14
|
-
|
|
15
14
|
"build": "eas build --profile development --platform all --local",
|
|
16
15
|
"build:staging": "eas build --profile staging --platform all --local --config app.staging.json",
|
|
17
16
|
"build:prod": "eas build --profile production --platform all --local --config app.prod.json",
|
|
18
|
-
|
|
19
17
|
"build:android": "eas build --profile development --platform android --local",
|
|
20
18
|
"build:ios": "eas build --profile development --platform ios --local",
|
|
21
|
-
|
|
22
19
|
"prebuild": "expo prebuild --clean",
|
|
23
20
|
"clean": "rm -rf node_modules && rm -rf .expo && rm -rf android && rm -rf ios && npm install"
|
|
24
21
|
},
|
|
25
22
|
"dependencies": {
|
|
23
|
+
"@react-native-async-storage/async-storage": "^1.21.0",
|
|
24
|
+
"@react-native-community/datetimepicker": "^8.2.0",
|
|
25
|
+
"@tanstack/react-query": "^5.51.0",
|
|
26
26
|
"axios": "^1.7.2",
|
|
27
27
|
"babel-preset-expo": "^54.0.5",
|
|
28
28
|
"expo": "~54.0.0",
|
|
29
|
+
"expo-camera": "~15.0.7",
|
|
29
30
|
"expo-constants": "~18.0.9",
|
|
31
|
+
"expo-dev-client": "~5.0.8",
|
|
32
|
+
"expo-file-system": "~19.0.17",
|
|
30
33
|
"expo-image-picker": "~17.0.8",
|
|
31
34
|
"expo-linear-gradient": "~15.0.7",
|
|
32
35
|
"expo-linking": "~8.0.8",
|
|
33
36
|
"expo-local-authentication": "~17.0.7",
|
|
37
|
+
"expo-location": "~18.0.8",
|
|
34
38
|
"expo-router": "^6.0.12",
|
|
35
39
|
"expo-secure-store": "~15.0.7",
|
|
40
|
+
"expo-sensors": "~13.0.8",
|
|
36
41
|
"expo-status-bar": "~3.0.8",
|
|
37
42
|
"lucide-react-native": "^0.546.0",
|
|
38
43
|
"metro-config": "^0.83.3",
|
|
@@ -40,14 +45,20 @@
|
|
|
40
45
|
"react": "19.1.0",
|
|
41
46
|
"react-dom": "19.1.0",
|
|
42
47
|
"react-native": "^0.81.4",
|
|
48
|
+
"react-native-flipper": "^0.273.0",
|
|
43
49
|
"react-native-gesture-handler": "~2.28.0",
|
|
50
|
+
"react-native-maps": "1.18.0",
|
|
51
|
+
"react-native-modal": "^13.0.1",
|
|
52
|
+
"react-native-paper": "^5.12.3",
|
|
44
53
|
"react-native-reanimated": "~4.1.1",
|
|
45
54
|
"react-native-safe-area-context": "~5.6.0",
|
|
46
55
|
"react-native-screens": "~4.16.0",
|
|
47
56
|
"react-native-svg": "15.12.1",
|
|
48
57
|
"react-native-toast-message": "^2.3.3",
|
|
58
|
+
"react-native-vector-icons": "^10.2.0",
|
|
49
59
|
"react-native-web": "^0.21.0",
|
|
50
|
-
"react-native-worklets": "0.5.1"
|
|
60
|
+
"react-native-worklets": "0.5.1",
|
|
61
|
+
"zustand": "^5.0.0"
|
|
51
62
|
},
|
|
52
63
|
"devDependencies": {
|
|
53
64
|
"@babel/core": "^7.26.0",
|
|
@@ -73,4 +84,4 @@
|
|
|
73
84
|
]
|
|
74
85
|
}
|
|
75
86
|
}
|
|
76
|
-
}
|
|
87
|
+
}
|