-
-
Notifications
You must be signed in to change notification settings - Fork 358
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.36 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.36 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
68
69
70
71
72
73
{
"name": "sentry-react-native-expo-sample",
"version": "8.7.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"start:android": "expo start --android",
"start:ios": "expo start --ios",
"start:web": "expo start --web",
"android": "expo run:android",
"ios": "expo run:ios",
"ts:check": "tsc",
"lint": "npx oxlint",
"fix": "npx oxlint --fix && npx oxfmt \"**/*.{js,jsx,ts,tsx}\"",
"export": "expo export --source-maps --clear --platform all",
"export:web": "expo export --source-maps --clear --platform web",
"prebuild": "expo prebuild --clean --no-install",
"set-version": "npx react-native-version --skip-tag --never-amend",
"eas-build-pre-install": "npm i -g corepack && yarn install --no-immutable --inline-builds && yarn workspace @sentry/react-native build",
"eas-build-on-complete": "sentry-eas-build-on-complete",
"eas-update-configure": "eas update:configure",
"eas-update-publish-development": "eas update --channel development --message 'Development update'",
"eas-build-development-android": "eas build --profile development --platform android"
},
"dependencies": {
"@sentry/core": "10.48.0",
"@sentry/react-native": "8.7.0",
"@types/react": "~19.2.10",
"expo": "^55.0.0",
"expo-constants": "~55.0.7",
"expo-dev-client": "~55.0.11",
"expo-image-picker": "~55.0.11",
"expo-linking": "~55.0.7",
"expo-router": "~55.0.4",
"expo-status-bar": "~55.0.4",
"expo-updates": "~55.0.12",
"expo-web-browser": "~55.0.9",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.85.0",
"react-native-gesture-handler": "~2.30.0",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-web": "^0.21.0",
"typescript": "~5.9.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@sentry/babel-plugin-component-annotate": "5.2.0",
"@types/node": "20.10.4",
"sentry-react-native-samples-utils": "workspace:^"
},
"overrides": {
"react-refresh": "~0.14.0"
},
"resolutions": {
"react-refresh": "~0.14.0"
},
"expo": {
"install": {
"exclude": [
"@sentry/react-native"
]
},
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
},
"private": true
}