-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.15 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "zerologin-mobile",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"android:release": "expo run:android --variant release",
"postinstall": "npx patch-package",
"prebuild": "expo prebuild",
"build:android": "eas build -p android",
"build:android:preview": "eas build -p android --profile preview",
"build:android:previewRelease": "eas build -p android --profile preview2",
"build:android:dev": "eas build -p android --profile development",
"build:ios": "eas build -p ios",
"build:ios:dev": "eas build --profile development --platform ios",
"build:ios:local": "eas build --platform ios --local",
"submit:android": "eas submit -p android",
"submit:ios": "eas submit -p ios"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-navigation/native": "^6.0.12",
"@react-navigation/native-stack": "^6.8.0",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@types/secp256k1": "^4.0.3",
"@zerologin/lnurl": "^0.1.2",
"bip32": "3.0.1",
"bip39": "^3.0.4",
"create-hash": "^1.2.0",
"dayjs": "^1.11.7",
"expo": "~47.0.12",
"expo-application": "~5.0.1",
"expo-barcode-scanner": "~12.1.0",
"expo-build-properties": "~0.4.1",
"expo-camera": "~13.1.0",
"expo-clipboard": "~4.0.1",
"expo-constants": "~14.0.2",
"expo-crypto": "~12.0.0",
"expo-dev-client": "~2.0.1",
"expo-device": "~5.0.0",
"expo-linking": "~3.3.0",
"expo-random": "~13.0.0",
"expo-secure-store": "~12.0.0",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-updates": "~0.15.6",
"fast-sha256": "^1.3.0",
"native-base": "^3.4.25",
"react": "18.1.0",
"react-native": "0.70.5",
"react-native-get-random-values": "^1.8.0",
"react-native-pager-view": "6.0.1",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-svg": "13.4.0",
"react-native-tab-view": "^3.3.4",
"react-native-url-polyfill": "^1.3.0",
"readable-stream": "2.3.7",
"secp256k1": "^4.0.3",
"text-encoding-polyfill": "^0.6.7",
"tiny-secp256k1": "1.1.6"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/jest": "^29.0.0",
"@types/react-test-renderer": "^18.0.0",
"eas-cli": "^3.4.1",
"node-libs-react-native": "^1.2.1",
"patch-package": "^6.5.1",
"typescript": "^4.8.2"
},
"resolutions": {
"@noble/hashes": "1.1.2"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": true,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 100,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
},
"private": true
}