-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "solsync",
"version": "1.0.0",
"main": "expo/AppEntry.js",
"scripts": {
"start": "expo start --tunnel",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint src App.tsx --fix",
"check-lint": "eslint src App.tsx",
"check-format": "prettier --check src App.tsx",
"format": "prettier --write src App.tsx",
"daily-email": "node --env-file=.env lambdas/sendDailyEmails/index.mjs"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"dayjs": "^1.11.13",
"expo": "~51.0.38",
"expo-crypto": "~13.0.2",
"expo-linear-gradient": "^13.0.2",
"expo-location": "~17.0.1",
"expo-status-bar": "~1.12.1",
"firebase": "^10.13.2",
"node-fetch": "^3.3.2",
"react": "18.2.0",
"react-hook-form": "^7.53.0",
"react-native": "0.74.5",
"react-native-calendars": "^1.1307.0",
"react-native-element-dropdown": "^2.12.1",
"react-native-maps": "1.14.0",
"react-native-vector-icons": "^10.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@expo/ngrok": "^4.1.3",
"@types/react": "~18.2.45",
"@types/react-native-vector-icons": "^6.4.18",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"typescript": "~5.3.3"
},
"private": true
}