forked from achorein/expo-share-intent-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "expo-share-intent-demo",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"clean": "expo prebuild --clean",
"prebuild": "expo prebuild --no-install",
"ios": "expo run:ios",
"android": "expo run:android",
"test": "CI=1 expo install --check",
"lint": "eslint .",
"test:fix": "expo install --fix",
"doctor": "npx expo-doctor",
"postinstall": "patch-package"
},
"dependencies": {
"expo": "~48.0.18",
"expo-config-plugin-ios-share-extension": "^0.0.4",
"expo-constants": "~14.2.1",
"expo-dev-client": "~2.2.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.8",
"react-native-receive-sharing-intent": "^2.0.0",
"react-native-web": "~0.18.7"
},
"overrides": {
"react-native": "0.71.8",
"@expo/config-plugins": "~6.0.0"
},
"resolutions": {
"@expo/config-plugins": "~6.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"eslint": "^8.50.0",
"eslint-config-universe": "^12.0.0",
"prettier": "^3.0.3"
},
"private": true
}