-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.95 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.95 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "npx expo start",
"android": "npx expo start --android",
"tsc": "npx tsc --noEmit",
"ios": "npx expo start --ios",
"web": "npx expo start --web",
"eject": "npx expo eject",
"lint": "eslint 'app/**/{*.ts,*.tsx}'",
"test": "jest",
"test-watch": "jest --watchAll",
"test-coverage": "jest --coverage",
"build:ios": "eas build --platform ios --profile production",
"submit:ios": "eas submit --platform ios --latest",
"update": "eas update"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!axios|@react-native|react-native|(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|native-base|react-native-elements)"
],
"coveragePathIgnorePatterns": [
"node_modules",
"app/lang",
"app/themes",
"app/example"
],
"setupFiles": [
"jest-date-mock"
]
},
"dependencies": {
"@atproto/api": "^0.3.3",
"@expo/react-native-action-sheet": "^3.7.0",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-community/datetimepicker": "6.7.3",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.11.11",
"@react-navigation/drawer": "^5.12.5",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"@react-navigation/web": "^1.0.0-alpha.9",
"@reduxjs/toolkit": "^1.8.1",
"@tradle/react-native-http": "^2.0.1",
"axios": "^1.3.3",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"dayjs": "^1.8.27",
"events": "^3.3.0",
"expo": "^48.0.0",
"expo-asset": "~8.9.1",
"expo-constants": "~14.2.1",
"expo-device": "~5.2.1",
"expo-file-system": "~15.2.2",
"expo-font": "~11.1.1",
"expo-image-picker": "~14.1.1",
"expo-linear-gradient": "~12.1.2",
"expo-localization": "~14.1.1",
"expo-notifications": "~0.18.1",
"expo-splash-screen": "~0.18.2",
"expo-updates": "~0.16.4",
"expo-web-browser": "~12.1.1",
"he": "^1.2.0",
"https-browserify": "^1.0.0",
"https-proxy-agent": "^5.0.1",
"i18n-js": "^3.5.1",
"jest": "^29.2.1",
"megalodon": "^6.0.0",
"os-browserify": "^0.3.0",
"prop-types": "^15.7.2",
"qs": "^6.10.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.7",
"react-native-customemoji": "^1.0.1",
"react-native-dropdownalert": "^4.2.1",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "~2.9.0",
"react-native-hyperlink": "^0.0.22",
"react-native-image-viewing": "^0.2.2",
"react-native-os": "^1.2.6",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-uuid": "^2.0.1",
"react-native-web": "~0.18.11",
"react-native-webview": "11.26.0",
"react-redux": "^7.2.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"text-encoding": "^0.7.0",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/react-native": "^11.4.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"jest-date-mock": "^1.0.8",
"jest-expo": "^48.0.0",
"jest-websocket-mock": "^2.2.0",
"mock-socket": "^9.0.3",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.1",
"react-test-renderer": "18.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.9.4"
},
"private": true,
"version": "0.0.0"
}