-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.92 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.92 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
{
"name": "hackersnews",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"android": "expo run:android",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"ios": "expo run:ios",
"start": "expo start",
"web": "expo start --web",
"test": "jest",
"testDebug": "jest -o --watch --coverage=false"
},
"dependencies": {
"@expo/vector-icons": "^14.0.0",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native-community/push-notification-ios": "^1.11.0",
"@react-native-picker/picker": "2.6.1",
"@react-navigation/drawer": "^6.6.15",
"@react-navigation/native": "^6.1.7",
"@tamagui/font-inter": "1.74.8",
"@tamagui/react-native-media-driver": "1.74.8",
"@tamagui/shorthands": "1.74.8",
"@tamagui/themes": "1.74.8",
"@tanstack/query-async-storage-persister": "^5.31.0",
"@tanstack/react-query": "^5.29.2",
"@tanstack/react-query-persist-client": "^5.31.0",
"@types/jest": "^29.5.12",
"expo": "~50.0.7",
"expo-constants": "~15.4.6",
"expo-device": "~5.9.4",
"expo-font": "~11.10.2",
"expo-linking": "~6.2.2",
"expo-notifications": "~0.27.7",
"expo-router": "^3.4.7",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "~2.9.3",
"expo-web-browser": "~12.8.2",
"jest": "^29.3.1",
"jest-expo": "~50.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.6",
"react-native-background-fetch": "^4.2.5",
"react-native-gesture-handler": "~2.14.0",
"react-native-mmkv": "^2.12.2",
"react-native-push-notification": "^8.1.1",
"react-native-reanimated": "~3.6.2",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "~3.29.0",
"react-native-swipe-list-view": "^3.2.9",
"react-native-web": "~0.19.10",
"react-native-webview": "13.6.4",
"tamagui": "1.74.8"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@tamagui/babel-plugin": "1.74.8",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.5",
"@types/react": "~18.2.14",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-testing-library": "^6.2.2",
"prettier": "^3.2.5",
"react-test-renderer": "^18.2.0",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": "universe/native",
"overrides": [
{
"files": [
"**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)"
],
"extends": [
"plugin:testing-library/react"
]
}
]
},
"resolutions": {
"expo-modules-core": "~1.11.0"
},
"overrides": {
"expo-modules-core": "~1.11.0"
},
"expo": {
"install": {
"exclude": [
"react-native-safe-area-context"
]
}
},
"private": true
}