-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.96 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
{
"name": "@expo/expo",
"version": "1.4.0",
"private": true,
"license": "MIT",
"author": "Expo",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "12.2.1",
"onFail": "warn"
}
},
"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": "./bin/expo-turbo build",
"typecheck": "./bin/expo-turbo typecheck",
"depscheck": "./bin/expo-turbo depscheck",
"lint": "./bin/expo-turbo lint",
"format": "./bin/expo-turbo format",
"test": "./bin/expo-turbo test",
"preprepare": "node scripts/prepare.js",
"prepare": "./bin/expo-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",
"@types/react": "~19.3.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.79.0",
"prettier": "~3.8.3",
"ts-node": "^10.9.2",
"turbo": "2.10.12",
"typescript": "^6.0.2"
},
"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": "^12.2.1"
}
}