-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 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
{
"name": "kit-expo-uniwind",
"displayName": "Uniwind Mobile Kit Expo example",
"description": "A template for building a Solana mobile app with Expo, React Native, Solana Kit, and Uniwind.",
"usecase": "Mobile",
"keywords": [
"expo",
"mobile-wallet-adapter",
"react-native",
"solana-kit",
"uniwind",
"tailwind"
],
"create-solana-dapp": {
"instructions": [
"To buld the Android app locally, run this:",
"+{pm} run android"
],
"versions:": {
"adb": "33.0.0"
}
},
"main": "./index.js",
"version": "1.0.0",
"scripts": {
"android": "expo run:android",
"android:build": "expo prebuild -p android",
"build": "tsc --noEmit && npm run android:build",
"ci": "tsc --noEmit && npm run lint:check && npm run format:check && npm run android:build",
"dev": "expo start --clear --dev-client --reset-cache",
"doctor": "npx -y expo-doctor@latest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ios": "expo run:ios",
"lint": "expo lint --fix",
"lint:check": "expo lint",
"start": "expo start",
"web": "expo start --web"
},
"dependencies": {
"@expo/metro-runtime": "~55.0.6",
"@solana/kit": "^6.1.0",
"@wallet-ui/react-native-kit": "^4.0.1",
"expo": "~55.0.8",
"expo-constants": "~55.0.9",
"expo-dev-client": "^55.0.18",
"expo-linking": "~55.0.8",
"expo-router": "~55.0.7",
"expo-status-bar": "~55.0.4",
"react": "~19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-quick-crypto": "^1.0.7",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"tailwindcss": "~4.1.16",
"uniwind": "~1.0.0"
},
"devDependencies": {
"@types/react": "~19.2.14",
"eslint": "^9.25.0",
"eslint-config-expo": "~55.0.0",
"prettier": "^3.8.1",
"typescript": "~5.9.2"
},
"private": true
}