-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@expo/expo",
"version": "1.4.0",
"private": true,
"license": "MIT",
"author": "Expo",
"workspaces": {
"packages": [
"apps/*",
"apps/brownfield-tester/*",
"packages/*",
"packages/@expo/*"
]
},
"scripts": {
"setup:docs": "./scripts/download-dependencies.sh --docs",
"setup:native": "./scripts/download-dependencies.sh --native && ./scripts/setup-react-android.sh",
"install:react-native-lab": "(([ \"$(ls -A react-native-lab/react-native)\" ] && (yarn --cwd react-native-lab/react-native install --frozen-lockfile || true) && yarn --cwd react-native-lab/react-native/packages/react-native-codegen build) || echo \"Skipping installing Node modules in react-native-lab/react-native (directory empty)\")",
"tsc": "echo 'You are trying to run \"tsc\" in the workspace root. Run it from an individual package instead.' && exit 1",
"build": "turbo build",
"typecheck": "turbo typecheck",
"depscheck": "turbo depscheck",
"lint": "turbo lint",
"format": "turbo format",
"test": "turbo test",
"preprepare": "node scripts/prepare.js",
"prepare": "turbo build"
},
"dependencies": {
"expo-asset": "workspace:*",
"expo-modules-core": "workspace:*",
"jest-expo": "workspace:*",
"jsc-android": "^250231.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.14.0",
"@vercel/ncc": "^0.38.4",
"expo-module-scripts": "workspace:*",
"expotools": "workspace:*",
"jest": "^29.7.0",
"lint-staged": "^17.0.8",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"prettier": "~3.8.3",
"ts-node": "^10.9.2",
"turbo": "2.10.0",
"typescript": "^6.0.2"
},
"resolutions": {
"@types/babel__code-frame": "^7.27.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-native": "0.86.0",
"react-native-reanimated": "4.5.1",
"react-native-worklets": "0.10.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "oxfmt --no-error-on-unmatched-pattern --write"
},
"engines": {
"node": "^22.13.0 || ^24.3.0 || ^26.0.0 || >=27.0.0",
"pnpm": "^10.33.0"
}
}