-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
111 lines (111 loc) · 3.69 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "expo-base",
"version": "1.6.0",
"main": "index.js",
"private": true,
"scripts": {
"start": "expo start",
"start -c": "expo start -c",
"prebuild": "expo prebuild",
"android": "expo run:android",
"android:release": "expo run:android --variant Release",
"android:dev-build": "eas build --profile development --platform android",
"android:dev-build:local": "eas build --profile development --platform android --local",
"android:preview": "eas build --profile preview --platform android",
"ios": "expo run:ios",
"ios:release": "expo run:ios --variant Release",
"ios:dev-build": "eas build --profile development --platform ios",
"ios:dev-build:local": "eas build --profile development --platform ios --local",
"ios:preview": "eas build --profile preview --platform ios",
"web": "expo start --web",
"typecheck": "tsc",
"lint": "eslint ./src ./e2e --fix",
"test": "jest --watchAll",
"e2e:ios:build": "detox build -c ios.release",
"e2e:ios:test": "detox test -c ios.release",
"e2e:ios:debug:build": "detox build -c ios.debug",
"e2e:ios:debug:test": "detox test -c ios.debug",
"e2e:android:build": "detox build -c android.release",
"e2e:android:test": "detox test -c android.release",
"e2e:android:debug:build": "detox build -c android.debug",
"e2e:android:debug:test": "detox test -c android.debug"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@gorhom/bottom-sheet": "^5.0.6",
"@react-native-community/netinfo": "11.4.1",
"@reduxjs/toolkit": "^2.5.0",
"@shopify/flash-list": "1.7.1",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.4.3",
"axios": "^1.7.9",
"babel-plugin-module-resolver": "^5.0.2",
"expo": "^52.0.23",
"expo-build-properties": "~0.13.1",
"expo-dev-client": "~5.0.7",
"expo-font": "~13.0.2",
"expo-image": "~2.0.3",
"expo-linking": "~7.0.3",
"expo-localization": "~16.0.0",
"expo-router": "~4.0.15",
"expo-secure-store": "~14.0.0",
"expo-splash-screen": "~0.29.18",
"expo-status-bar": "~2.0.0",
"expo-system-ui": "~4.0.6",
"expo-web-browser": "~14.0.1",
"i18next": "^24.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.2",
"react-i18next": "^15.2.0",
"react-native": "0.76.5",
"react-native-bottom-tabs": "^0.7.8",
"react-native-gesture-handler": "~2.20.2",
"react-native-mmkv": "^3.2.0",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-size-matters": "^0.4.2",
"react-native-svg": "15.8.0",
"react-native-uuid": "^2.0.3",
"react-native-web": "~0.19.13",
"react-redux": "^9.2.0",
"redux-persist": "^6.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@commitlint/config-conventional": "^18.4.3",
"@config-plugins/detox": "^7.0.0",
"@types/jest": "^29.5.11",
"@types/react": "~18.3.12",
"@types/react-redux": "^7.1.34",
"commitlint": "^18.4.3",
"detox": "^20.20.3",
"detox-expo-helpers": "^0.6.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-expo": "~52.0.2",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"react-test-renderer": "18.2.0",
"sharp-cli": "^4.2.0",
"typescript": "~5.3.3"
},
"eslintConfig": {
"extends": "universe/native"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"yarn lint"
]
}
}