expo-template-blank-typescript 47.0.21 → 48.0.0

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.
Files changed (2) hide show
  1. package/gitignore +3 -0
  2. package/package.json +9 -10
package/gitignore CHANGED
@@ -12,3 +12,6 @@ web-build/
12
12
 
13
13
  # macOS
14
14
  .DS_Store
15
+
16
+ # Temporary files created by Metro to check the health of the file watcher
17
+ .metro-health-check*
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-template-blank-typescript",
3
3
  "description": "The Blank project template includes the minimum dependencies to run and an empty root component.",
4
- "version": "47.0.21",
4
+ "version": "48.0.0",
5
5
  "main": "node_modules/expo/AppEntry.js",
6
6
  "scripts": {
7
7
  "start": "expo start",
@@ -10,17 +10,16 @@
10
10
  "web": "expo start --web"
11
11
  },
12
12
  "dependencies": {
13
- "expo": "~47.0.12",
14
- "expo-status-bar": "~1.4.2",
15
- "react": "18.1.0",
16
- "react-dom": "18.1.0",
17
- "react-native": "0.70.5",
18
- "react-native-web": "~0.18.9"
13
+ "expo": "~48.0.0-beta.0",
14
+ "expo-status-bar": "~1.4.3",
15
+ "react": "18.2.0",
16
+ "react-dom": "18.2.0",
17
+ "react-native": "0.71.2",
18
+ "react-native-web": "~0.18.10"
19
19
  },
20
20
  "devDependencies": {
21
- "@babel/core": "^7.12.9",
21
+ "@babel/core": "^7.20.0",
22
22
  "@types/react": "~18.0.14",
23
- "@types/react-native": "~0.70.6",
24
- "typescript": "^4.6.3"
23
+ "typescript": "^4.9.4"
25
24
  }
26
25
  }