-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·96 lines (96 loc) · 3.4 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "kkutaxi",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"eas-build-pre-install": "./prepare-google-services.sh",
"eas-pre-build": "./prepare-google-services.sh",
"build:ios-development": "cross-env $(cat .env.development | xargs) eas build -p ios --profile development --local",
"build:android-development": "cross-env $(cat .env.development | xargs) eas build -p android --profile development --local",
"build:production": "cross-env $(cat .env.production | xargs) eas build -p production --local",
"build:ios-production": "cross-env $(cat .env.production | xargs) eas build -p ios --profile production --local",
"build:android-production": "cross-env $(cat .env.production | xargs) eas build -p android --profile production --local",
"android": "expo run:android",
"ios": "expo run:ios",
"test": "jest --watchAll",
"lint": "expo lint"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@eslint/config-array": "^0.17.1",
"@eslint/object-schema": "^2.1.4",
"@expo/config-plugins": "~8.0.0",
"@expo/server": "^0.4.3",
"@expo/vector-icons": "^14.0.2",
"@gluestack-style/react": "^1.0.56",
"@gluestack-ui/config": "^1.1.18",
"@gluestack-ui/themed": "^1.1.26",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-firebase/app": "^20.4.0",
"@react-native-firebase/app-check": "^20.4.0",
"@react-navigation/native": "^6.0.2",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"expo": "51.0.26",
"expo-application": "~5.9.1",
"expo-build-properties": "^0.12.5",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.20",
"expo-device": "~6.0.2",
"expo-font": "12.0.9",
"expo-font-interface": "~2.0.0",
"expo-linking": "~6.3.1",
"expo-notifications": "0.28.15",
"expo-router": "~3.5.18",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"expo-updates": "0.25.22",
"expo-web-browser": "~13.0.3",
"firebase": "^10.12.2",
"md5": "^2.3.0",
"nativewind": "^2.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-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-web": "~0.19.10",
"socket.io-client": "^4.7.5",
"tailwindcss": "~3",
"typescript-eslint": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.25.3",
"@eslint/js": "^9.7.0",
"@types/jest": "^29.5.12",
"@types/md5": "^2.3.5",
"@types/react": "~18.2.79",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/type-utils": "7.18.0",
"@typescript-eslint/utils": "7.18.0",
"eslint": "^8.56.0",
"eslint-config-expo": "^7.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"globals": "^15.8.0",
"jest": "^29.2.1",
"jest-expo": "~51.0.3",
"prettier": "^3.3.3",
"react-test-renderer": "18.2.0",
"typescript": "~5.5.0"
},
"private": true
}