-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.02 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
{
"name": "nostrum",
"version": "0.0.1",
"main": "./src/index.js",
"scripts": {
"start": "npx expo start",
"android": "npx expo start --android",
"ios": "npx expo start --ios",
"web": "npx expo start --web",
"format": "prettier --write ./src/**/*.{ts,tsx}",
"format:check": "prettier --check ./src/**/*.{ts,tsx}",
"lint": "eslint ./src/**/*.{ts,tsx}",
"lint:fix": "eslint ./src/**/*.{ts,tsx} --fix"
},
"dependencies": {
"@expo-google-fonts/sora": "^0.2.2",
"@gorhom/bottom-sheet": "^4",
"@nostr-connect/connect": "^0.2.3",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/clipboard": "^1.5.1",
"@react-navigation/native": "^6.1.1",
"@react-navigation/native-stack": "^6.9.7",
"events": "^3.3.0",
"expo": "^47.0.11",
"expo-barcode-scanner": "~12.1.0",
"expo-clipboard": "~4.0.1",
"expo-font": "~11.0.1",
"expo-secure-store": "~12.0.0",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-updates": "~0.15.6",
"nostr-tools": "^1.1.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.8",
"react-native-gesture-handler": "^2.8.0",
"react-native-get-random-values": "^1.8.0",
"react-native-reanimated": "~2.12.0",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-web": "~0.18.9",
"react-native-webview": "11.23.1",
"react-native-webview-crypto": "^0.0.25",
"text-encoding": "^0.7.0",
"zustand": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/react": "~18.0.14",
"@types/react-native": "~0.70.6",
"@types/text-encoding": "^0.0.36",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-universe": "^11.1.1",
"prettier": "^2.8.1",
"typescript": "^4.6.3"
},
"private": true
}