-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.48 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.48 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
{
"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/*",
"apps/brownfield-tester/*",
"packages/*",
"packages/@expo/*"
]
},
"resolutions": {
"react": "19.2.3",
"react-dom": "19.2.3",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.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"
}
}