-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.07 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
{
"name": "mobile-app-template",
"version": "1.0.0",
"main": "expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"lint:check": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"prettier:check": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"tsc": "npx tsc --noEmit",
"prepare": "husky",
"pre-commit": "(npm run tsc || true) && (npm run lint:check || true) && npm run prettier:check"
},
"dependencies": {
"@react-native/metro-config": "^0.76.3",
"@react-navigation/bottom-tabs": "^7.0.6",
"@react-navigation/drawer": "^7.0.6",
"@react-navigation/native": "^7.0.3",
"@react-navigation/native-stack": "^7.1.0",
"@rneui/base": "^4.0.0-rc.7",
"@rneui/themed": "^4.0.0-rc.8",
"@supabase/supabase-js": "^2.45.6",
"debug": "^4.3.7",
"expo": "^52.0.5",
"expo-av": "~15.0.1",
"expo-status-bar": "~2.0.0",
"metro-config": "^0.81.0",
"expo-video": "~2.0.2",
"react": "^18.3.1",
"react-native": "0.76.1",
"react-native-dotenv": "^3.4.11",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "^2.21.2",
"react-native-media-controls": "^2.3.0",
"react-native-paper": "^5.12.5",
"react-native-reanimated": "^3.16.1",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.0.0",
"react-native-slider": "^0.11.0",
"react-native-video": "^6.8.0",
"react-native-video-controls": "^2.8.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@eslint/js": "^9.9.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/react": "~18.3.12",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.0",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"react-native-svg-transformer": "^1.5.0",
"typescript": "~5.3.3",
"yarnhook": "^0.6.2"
},
"private": true
}