-
-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.7 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.7 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
74
75
76
77
78
79
80
81
{
"name": "sentry-react-native-expo-sample",
"version": "7.9.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 eslint . --ext .js,.jsx,.ts,.tsx",
"fix": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix && prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"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-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.35.0",
"@sentry/react-native": "7.9.0",
"@types/react": "~19.0.10",
"expo": "^53.0.0",
"expo-constants": "~17.1.5",
"expo-dev-client": "~5.1.8",
"expo-image-picker": "~16.1.4",
"expo-linking": "~7.1.4",
"expo-router": "~5.0.5",
"expo-status-bar": "~2.2.3",
"expo-updates": "~0.28.12",
"expo-web-browser": "~14.1.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.2",
"react-native-gesture-handler": "~2.24.0",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.10.0",
"react-native-web": "^0.20.0",
"typescript": "~5.8.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@react-native/eslint-config": "0.79.1",
"@sentry/babel-plugin-component-annotate": "4.7.0",
"@types/node": "20.10.4",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.5.0",
"prettier": "2.8.8",
"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
}