forked from expo/expo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.81 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.81 KB
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
{
"name": "@expo/expo",
"version": "1.4.0",
"private": true,
"author": "Expo",
"license": "MIT",
"scripts": {
"setup:docs": "./scripts/download-dependencies.sh",
"setup:native": "./scripts/download-dependencies.sh && ./scripts/setup-react-android.sh",
"postinstall": "yarn-deduplicate && yarn workspace @expo/cli prepare && patch-package && node ./tools/bin/expotools.js validate-workspace-dependencies",
"install:react-native-lab": "(([ \"$(ls -A react-native-lab/react-native)\" ] && (yarn --cwd react-native-lab/react-native install --frozen-lockfile || true)) || echo \"Skipping installing Node modules in react-native-lab/react-native (directory empty)\")",
"lint": "eslint .",
"tsc": "echo 'You are trying to run \"tsc\" in the workspace root. Run it from an individual package instead.' && exit 1"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"packages/@expo/*"
]
},
"resolutions": {
"@expo/metro": "~54.1.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.7",
"@react-navigation/bottom-tabs": "7.7.3",
"@react-navigation/core": "7.13.2",
"@react-navigation/drawer": "7.7.2",
"@react-navigation/elements": "2.8.3",
"@react-navigation/native": "7.1.21",
"@react-navigation/native-stack": "7.8.0",
"@react-navigation/routers": "7.5.1",
"@react-navigation/stack": "7.6.7",
"**/util": "~0.12.4"
},
"dependencies": {
"eslint": "^8.57.1",
"jsc-android": "^250231.0.0",
"patch-package": "^8.0.1",
"prettier": "^3.4.2",
"yarn-deduplicate": "^6.0.2"
},
"volta": {
"node": "22.14.0"
},
"devDependencies": {
"ts-node": "^10.9.2"
}
}