-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.64 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
{
"name": "expo-react-navigation-meetup",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start -c",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"tunnel": "expo start --tunnel",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"gen:supabase": "bash ./scripts/generate-supabase-types.sh"
},
"dependencies": {
"@expo-google-fonts/ibm-plex-mono": "^0.2.3",
"@expo-google-fonts/titillium-web": "^0.2.3",
"@nanostores/react": "^0.6.0",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/drawer": "^6.6.2",
"@react-navigation/native-stack": "^6.9.12",
"@supabase/supabase-js": "^2.21.0",
"expo": "~48.0.15",
"expo-constants": "~14.2.1",
"expo-status-bar": "~1.4.4",
"nanostores": "^0.8.1",
"react": "18.2.0",
"react-native": "0.71.7",
"react-native-gesture-handler": "~2.9.0",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-url-polyfill": "^1.3.0",
"@react-native-async-storage/async-storage": "1.17.11"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.0.14",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"eslint-config-universe": "^11.2.0",
"prettier": "^2.8.8",
"typescript": "^4.9.4"
},
"private": true,
"eslintConfig": {
"extends": "universe/native"
}
}