-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.76 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
{
"name": "maroonrides",
"version": "1.0.0",
"main": "Main.tsx",
"scripts": {
"start": "expo start --dev-client",
"dev:android": "expo start --android",
"dev:ios": "expo start --ios",
"web": "expo start --web",
"android": "expo run:android",
"ios": "expo run:ios",
"lint": "eslint .",
"format": "eslint --fix . && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"check-types": "tsc --noEmit --pretty",
"postinstall": "patch-package"
},
"dependencies": {
"@bacons/apple-targets": "^0.0.3",
"@bacons/text-decoder": "^0.0.0",
"@expo/vector-icons": "^14.0.2",
"@googlemaps/polyline-codec": "^1.0.28",
"@gorhom/bottom-sheet": "^4.6.4",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-segmented-control/segmented-control": "2.5.2",
"@tanstack/query-async-storage-persister": "^5.53.1",
"@tanstack/react-query": "^5.22.2",
"@tanstack/react-query-persist-client": "^5.53.1",
"aggie-spirit-api": "~1.3.4",
"expo": "^51.0.31",
"expo-constants": "~16.0.2",
"expo-linking": "~6.3.1",
"expo-location": "~17.0.1",
"expo-router": "~3.5.23",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"moment": "^2.30.1",
"moment-strftime": "^0.5.0",
"patch-package": "^8.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-maps": "1.14.0",
"react-native-reanimated": "~3.10.1",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-timeline-flatlist": "^0.8.0",
"react-native-web": "~0.19.6",
"zod": "^3.22.4",
"zustand": "^4.4.6"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@config-plugins/detox": "^8.0.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.1.3",
"@types/react": "~18.2.79",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-preset-expo": "~11.0.0",
"eas-cli": "^3.17.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^5.11.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}