-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
72 lines (72 loc) · 1.83 KB
/
package.json
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
{
"name": "sentry-expo",
"version": "7.2.0",
"description": "Catch your Javascript errors for your production Expo apps!",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"upload-sourcemaps.js",
"plugin/build",
"app.plugin.js"
],
"scripts": {
"build": "yarn bake-version && expo-module build",
"clean": "expo-module clean",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"bake-version": "cd scripts; yarn bake-version; cd .."
},
"license": "MIT",
"keywords": [
"react-native",
"expo",
"sentry"
],
"repository": {
"type": "git",
"url": "https://github.com/expo/sentry-expo.git"
},
"bugs": {
"url": "https://github.com/expo/sentry-expo/issues"
},
"jest": {
"preset": "expo-module-scripts"
},
"author": "650 Industries, Inc.",
"homepage": "https://docs.expo.io/guides/using-sentry/",
"dependencies": {
"@expo/spawn-async": "^1.7.0",
"@sentry/integrations": "7.81.1",
"@sentry/react": "7.81.1",
"@sentry/react-native": "5.17.0",
"@sentry/types": "7.81.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"expo": ">=47.0.0",
"expo-application": "*",
"expo-constants": "*",
"expo-device": "*"
},
"devDependencies": {
"@types/mkdirp": "^1.0.2",
"@types/node": "^14.0.1",
"@types/react-native": "^0.70.5",
"@types/rimraf": "^3.0.2",
"expo": "^47.0.7",
"expo-application": "~5.0.1",
"expo-constants": "~14.0.2",
"expo-device": "~5.0.0",
"expo-module-scripts": "3.0.4",
"expo-updates": "~0.15.6",
"jest": "29.5.0",
"react": "18.2.0",
"react-native": "0.71.8",
"react-native-web": "~0.18.9",
"typescript": "^4.7.4"
}
}