forked from achorein/expo-share-intent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) 路 1.46 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) 路 1.46 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
{
"name": "expo-share-intent-example",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"prebuild": "expo prebuild --no-install",
"clean": "yarn prebuild --clean",
"test": "CI=1 expo install --check",
"test:fix": "expo install --fix",
"doctor": "npx --yes expo-doctor@latest",
"lint": "eslint .",
"postinstall": "patch-package"
},
"dependencies": {
"@react-navigation/native": "^7.0.2",
"@react-navigation/native-stack": "^7.0.2",
"@react-navigation/stack": "^7.0.2",
"expo": "54.0.22",
"expo-linking": "~8.0.8",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"patch-package": "^8.0.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@expo/cli": "^0.24.10",
"@types/react": "~19.1.10",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.1",
"eslint-config-universe": "^14.0.0",
"prettier": "^3.3.3",
"typescript": "~5.9.2"
},
"private": true,
"expo": {
"autolinking": {
"nativeModulesDir": "../.."
},
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
}
}