-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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": "deep-link-demo-app",
"version": "1.0.0",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"native-prestart:android": "expo prebuild -p android",
"native-prestart:android:clean": "expo prebuild --clean -p android",
"native-prestart:ios": "expo prebuild -p ios",
"native-prestart:ios:clean": "expo prebuild --clean -p ios",
"watch": "expo start --dev-client --clear",
"watch:tunnel": " expo start --dev-client --clear --tunnel",
"android": "expo run:android",
"ios": "expo run:ios",
"build-android": "eas build --profile production -p android --local",
"lint": "eslint ."
},
"dependencies": {
"@solana/web3.js": "~1.35.0",
"buffer": "^6.0.3",
"expo": "~48.0.21",
"expo-linking": "~4.0.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-updates": "~0.16.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.14",
"react-native-get-random-values": "~1.9.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-web": "~0.18.11",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/bs58": "^4.0.1",
"@types/react": "~18.0.27",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"prettier": "^3.2.4",
"typescript": "^4.9.4"
},
"private": true
}