-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 930 Bytes
/
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
{
"name": "solito-expo-router",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "^18.0.17",
"@types/react-native": "^0.69.5",
"eslint": "^8.21.0",
"turbo": "^1.4.2",
"typescript": "^4.7.4"
},
"scripts": {
"native": "cd apps/expo && yarn start",
"web": "cd apps/next && yarn next",
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios"
},
"resolutions": {
"metro": "^0.73.1",
"metro-resolver": "^0.73.1"
},
"nohoist": [
"**/expo-router",
"**/expo-router/**"
],
"engines": {
"node": "^16.0.0"
},
"packageManager": "yarn@3.4.1",
"version": "1.0.0",
"dependencies": {
"expo": "~48.0.9",
"expo-splash-screen": "~0.18.1",
"expo-status-bar": "~1.4.4",
"react": "18.2.0",
"react-native": "0.71.4"
}
}