-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.04 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
{
"name": "rn-hng-boilerplate",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"android": "expo start --android",
"ios": "expo start --ios",
"start": "expo start",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"web": "expo start --web"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.3",
"@expo/vector-icons": "^14.0.0",
"@hookform/resolvers": "^3.9.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/native": "^6.1.7",
"@rn-primitives/accordion": "^1.0.3",
"@rn-primitives/alert-dialog": "^1.0.3",
"@rn-primitives/avatar": "^1.0.3",
"@rn-primitives/checkbox": "^1.0.3",
"@rn-primitives/dialog": "^1.0.3",
"@rn-primitives/dropdown-menu": "^1.0.3",
"@rn-primitives/hooks": "^1.0.3",
"@rn-primitives/popover": "^1.0.3",
"@rn-primitives/portal": "^1.0.3",
"@rn-primitives/select": "^1.0.4",
"@rn-primitives/slot": "^1.0.3",
"@rn-primitives/types": "^1.0.3",
"@rn-primitives/utils": "^1.0.3",
"@shopify/flash-list": "1.6.4",
"@tanstack/react-query": "^5.51.23",
"expo": "^51.0.0",
"expo-clipboard": "~6.0.3",
"expo-constants": "~16.0.1",
"expo-font": "~12.0.9",
"expo-image-manipulator": "~12.0.5",
"expo-image-picker": "~15.0.7",
"expo-linear-gradient": "~13.0.2",
"expo-linking": "~6.3.1",
"expo-localization": "~15.0.3",
"expo-router": "~3.5.14",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.4",
"expo-web-browser": "~13.0.3",
"gifted-charts-core": "^0.1.29",
"i18next": "^23.14.0",
"iconsax-react-native": "^0.0.8",
"ky": "^1.5.0",
"moti": "^0.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.52.2",
"react-i18next": "^15.0.1",
"react-native": "0.74.5",
"react-native-confirmation-code-field": "^7.4.0",
"react-native-feather": "^1.1.2",
"react-native-gesture-handler": "~2.16.1",
"react-native-gifted-charts": "^1.4.28",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-svg-transformer": "^1.5.0",
"react-native-toast-message": "^2.2.0",
"react-native-uitextview": "^1.1.8",
"react-native-web": "~0.19.10",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.45",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.1",
"prettier": "^3.2.5",
"typescript": "~5.3.3"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
},
"expo": {
"install": {
"exclude": [
"react-native-safe-area-context"
]
}
},
"private": true
}