-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.38 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
{
"name": "food-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start",
"dev": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"server": "json-server --watch ./src/server/db.json --host 192.168.100.23 -d 750",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.3",
"@hookform/resolvers": "^3.1.0",
"@react-native-firebase/app": "^17.5.0",
"@react-native-firebase/auth": "^17.5.0",
"@react-native-firebase/firestore": "^17.5.0",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/material-top-tabs": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@types/react": "~18.0.27",
"expo": "~48.0.15",
"expo-font": "~11.1.1",
"expo-network": "~5.2.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"json-server": "^0.17.3",
"phosphor-react-native": "^1.1.2",
"react": "18.2.0",
"react-hook-form": "^7.43.9",
"react-native": "0.71.8",
"react-native-gesture-handler": "~2.9.0",
"react-native-pager-view": "6.1.2",
"react-native-reanimated": "~2.14.4",
"react-native-reanimated-carousel": "^3.3.2",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "^3.20.0",
"react-native-svg": "13.4.0",
"react-native-tab-view": "^3.5.1",
"react-native-toast-message": "^2.1.6",
"styled-components": "^5.3.10",
"typescript": "^4.9.4",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/styled-components-react-native": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8",
"react-native-svg-transformer": "^1.0.0"
},
"private": true
}