-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·97 lines (97 loc) · 3.1 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
{
"name": "anomius",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios"
},
"dependencies": {
"@apollo/client": "^3.7.10",
"@expo/config-plugins": "~6.0.0",
"@expo/react-native-action-sheet": "^4.0.1",
"@gorhom/bottom-sheet": "^4.4.5",
"@react-navigation/native": "^6.1.2",
"@react-navigation/stack": "^6.3.11",
"@stablelib/base64": "^1.0.1",
"@stablelib/utf8": "^1.0.1",
"@types/node": "^18.14.6",
"@types/react": "~18.0.27",
"@types/react-native": "~0.70.6",
"axios": "^1.3.4",
"buffer": "^6.0.3",
"constants": "^0.0.2",
"events": "^1.1.1",
"expo": "^48.0.16",
"expo-asset": "~8.9.1",
"expo-clipboard": "~4.1.2",
"expo-crypto": "~12.2.1",
"expo-dev-client": "~2.2.1",
"expo-device": "~5.2.1",
"expo-file-system": "^15.2.2",
"expo-font": "~11.1.1",
"expo-image-manipulator": "~11.1.1",
"expo-image-picker": "~14.1.1",
"expo-linear-gradient": "~12.1.2",
"expo-local-authentication": "~13.3.0",
"expo-notifications": "~0.18.1",
"expo-permissions": "~14.1.1",
"expo-random": "~13.1.1",
"expo-secure-store": "~12.1.1",
"expo-status-bar": "~1.4.4",
"expo-task-manager": "~11.1.1",
"expo-updates": "~0.16.4",
"graphql-ws": "^5.12.0",
"hybrid-crypto-js": "^0.2.4",
"path-browserify": "^0.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.7",
"react-native-actionsheet": "^2.4.2",
"react-native-btr": "^2.2.0",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "^2.9.0",
"react-native-image-picker": "^5.1.0",
"react-native-level-fs": "^3.0.1",
"react-native-modalize": "^2.1.1",
"react-native-portalize": "^1.0.7",
"react-native-reanimated": "~2.14.4",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "^3.20.0",
"react-native-sodium": "^0.4.0",
"react-native-web": "~0.18.11",
"readable-stream": "^1.0.33",
"rn-nodeify": "^10.3.0",
"stream-browserify": "^1.0.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typescript": "^4.9.4",
"util": "^0.10.4"
},
"devDependencies": {
"@babel/core": "^7.20.0"
},
"private": true,
"react-native": {
"path": "path-browserify",
"fs": "react-native-level-fs",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify"
},
"browser": {
"path": "path-browserify",
"fs": "react-native-level-fs",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify"
}
}