-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
272 lines (272 loc) · 11 KB
/
package.json
File metadata and controls
272 lines (272 loc) · 11 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
{
"name": "unit",
"version": "0.0.1",
"versionCode": "1",
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "cross-env EXPO_NO_DOTENV=1 expo start",
"prebuild": "cross-env EXPO_NO_DOTENV=1 yarn expo prebuild",
"android": "cross-env EXPO_NO_DOTENV=1 expo run:android",
"ios": "cross-env EXPO_NO_DOTENV=1 expo run:ios --device",
"web": "cross-env EXPO_NO_DOTENV=1 expo start --web",
"xcode": "xed -b ios",
"doctor": "npx expo-doctor@latest",
"start:staging": "cross-env APP_ENV=staging yarn run start",
"start:internal": "cross-env APP_ENV=internal yarn run start",
"prebuild:staging": "cross-env APP_ENV=staging yarn run prebuild",
"prebuild:development": "cross-env APP_ENV=development yarn run prebuild",
"android:staging": "cross-env APP_ENV=staging yarn run android",
"ios:staging": "cross-env APP_ENV=staging yarn run ios",
"start:production": "cross-env APP_ENV=production yarn run start",
"prebuild:production": "cross-env APP_ENV=production yarn run prebuild",
"prebuild:internal": "cross-env APP_ENV=internal yarn run prebuild",
"android:production": "cross-env APP_ENV=production yarn run android",
"ios:production": "cross-env APP_ENV=production yarn run ios",
"android:internal": "cross-env APP_ENV=internal yarn run android",
"ios:internal": "cross-env APP_ENV=internal yarn run ios",
"build:development:ios": "cross-env APP_ENV=development EXPO_NO_DOTENV=1 eas build --profile development --platform ios",
"build:development:android": "cross-env APP_ENV=development EXPO_NO_DOTENV=1 eas build --profile development --platform android ",
"build:staging:ios": "cross-env APP_ENV=staging EXPO_NO_DOTENV=1 eas build --profile staging --platform ios",
"build:staging:android": "cross-env APP_ENV=staging EXPO_NO_DOTENV=1 eas build --profile staging --platform android ",
"build:production:ios": "cross-env APP_ENV=production EXPO_NO_DOTENV=1 eas build --profile production --platform ios",
"build:production:android": "cross-env APP_ENV=production EXPO_NO_DOTENV=1 eas build --profile production --platform android ",
"build:internal:ios": "cross-env APP_ENV=internal EXPO_NO_DOTENV=1 eas build --profile internal --platform ios",
"build:internal:android": "cross-env APP_ENV=internal EXPO_NO_DOTENV=1 eas build --profile internal --platform android",
"postinstall": "patch-package",
"app-release": "cross-env SKIP_BRANCH_PROTECTION=true np --no-publish --no-cleanup --no-release-draft",
"lint": "eslint src --ext .ts,.tsx --cache --cache-location node_modules/.cache/eslint",
"type-check": "tsc --noemit",
"lint:translations": "eslint ./src/translations/ --fix --ext .json ",
"test": "jest --runInBand --coverage=true --coverageReporters=cobertura",
"check-all": "yarn run lint && yarn run type-check && yarn run lint:translations",
"test:ci": "yarn run test --coverage",
"test:watch": "yarn run test --watch",
"install-maestro": "curl -Ls 'https://get.maestro.mobile.dev' | bash",
"e2e-test": "maestro test .maestro/ -e APP_ID=com.obytes.development",
"web:build": "cross-env EXPO_NO_DOTENV=1 expo export --platform web",
"web:staging": "cross-env APP_ENV=staging yarn run web",
"web:production": "cross-env APP_ENV=production yarn run web",
"electron:dev": "concurrently \"yarn web\" \"wait-on http://localhost:8081 && electron .\"",
"electron:build": "yarn web:build && electron-builder --config electron-builder.config.js",
"electron:build:mac": "yarn web:build && electron-builder --config electron-builder.config.js --mac",
"electron:build:win": "yarn web:build && electron-builder --config electron-builder.config.js --win",
"electron:build:linux": "yarn web:build && electron-builder --config electron-builder.config.js --linux"
},
"dependencies": {
"@config-plugins/react-native-callkeep": "^11.0.0",
"@config-plugins/react-native-webrtc": "~12.0.0",
"@dev-plugins/react-query": "~0.2.0",
"@expo/html-elements": "~0.10.1",
"@expo/metro-runtime": "~5.0.5",
"@gluestack-ui/accordion": "~1.0.6",
"@gluestack-ui/actionsheet": "~0.2.44",
"@gluestack-ui/alert": "~0.1.15",
"@gluestack-ui/alert-dialog": "~0.1.30",
"@gluestack-ui/avatar": "~0.1.17",
"@gluestack-ui/button": "~1.0.14",
"@gluestack-ui/checkbox": "~0.1.31",
"@gluestack-ui/divider": "~0.1.9",
"@gluestack-ui/fab": "~0.1.21",
"@gluestack-ui/form-control": "~0.1.18",
"@gluestack-ui/icon": "~0.1.27",
"@gluestack-ui/image": "~0.1.10",
"@gluestack-ui/input": "~0.1.38",
"@gluestack-ui/link": "~0.1.22",
"@gluestack-ui/menu": "~0.2.43",
"@gluestack-ui/modal": "~0.1.35",
"@gluestack-ui/nativewind-utils": "~1.0.26",
"@gluestack-ui/overlay": "~0.1.16",
"@gluestack-ui/popover": "~0.1.49",
"@gluestack-ui/pressable": "~0.1.16",
"@gluestack-ui/progress": "~0.1.16",
"@gluestack-ui/radio": "~0.1.40",
"@gluestack-ui/select": "~0.1.31",
"@gluestack-ui/slider": "~0.1.32",
"@gluestack-ui/spinner": "~0.1.14",
"@gluestack-ui/switch": "~0.1.22",
"@gluestack-ui/textarea": "~0.1.23",
"@gluestack-ui/toast": "~1.0.8",
"@gluestack-ui/tooltip": "~0.1.32",
"@gorhom/bottom-sheet": "~5.0.5",
"@hookform/resolvers": "~3.9.0",
"@legendapp/motion": "~2.4.0",
"@livekit/react-native": "^2.9.1",
"@livekit/react-native-expo-plugin": "^1.0.1",
"@livekit/react-native-webrtc": "^137.0.2",
"@microsoft/signalr": "~8.0.7",
"@notifee/react-native": "^9.1.8",
"@novu/react-native": "^3.11.0",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-firebase/app": "^23.5.0",
"@react-native-firebase/messaging": "^23.5.0",
"@rnmapbox/maps": "10.2.10",
"@semantic-release/git": "^10.0.1",
"@sentry/react-native": "~6.14.0",
"@shopify/flash-list": "1.7.6",
"@tanstack/react-query": "~5.52.1",
"app-icon-badge": "^0.1.2",
"axios": "~1.12.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-import-meta": "^2.3.3",
"buffer": "^6.0.3",
"countly-sdk-react-native-bridge": "25.4.1",
"date-fns": "^4.1.0",
"expo": "~53.0.27",
"expo-application": "~6.1.5",
"expo-asset": "~11.1.7",
"expo-audio": "~0.4.9",
"expo-auth-session": "~6.2.1",
"expo-av": "~15.1.7",
"expo-build-properties": "~0.14.8",
"expo-constants": "~17.1.8",
"expo-crypto": "~14.1.5",
"expo-dev-client": "~5.2.4",
"expo-device": "~7.1.4",
"expo-document-picker": "~13.1.6",
"expo-file-system": "~18.1.11",
"expo-font": "~13.3.2",
"expo-image": "~2.4.1",
"expo-image-manipulator": "~13.1.7",
"expo-image-picker": "~16.1.4",
"expo-keep-awake": "~14.1.4",
"expo-linking": "~7.1.7",
"expo-localization": "~16.1.6",
"expo-location": "~18.1.6",
"expo-navigation-bar": "~4.2.8",
"expo-router": "~5.1.11",
"expo-screen-orientation": "~8.1.7",
"expo-secure-store": "~14.2.4",
"expo-sharing": "~13.1.5",
"expo-splash-screen": "~0.30.10",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.11",
"expo-task-manager": "~13.1.6",
"expo-web-browser": "~14.2.0",
"geojson": "~0.5.0",
"i18next": "~23.14.0",
"livekit-client": "^2.15.7",
"lodash": "^4.17.21",
"lodash.memoize": "~4.1.2",
"lucide-react-native": "~0.475.0",
"mapbox-gl": "3.18.1",
"moti": "~0.29.0",
"nativewind": "~4.1.21",
"promise": "8.3.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "~4.0.13",
"react-hook-form": "~7.53.0",
"react-i18next": "~15.0.1",
"react-native": "0.79.6",
"react-native-base64": "~0.2.1",
"react-native-ble-manager": "^12.1.5",
"react-native-callkeep": "github:Irfanwani/react-native-callkeep#957193d0716f1c2dfdc18e627cbff0f8a0800971",
"react-native-edge-to-edge": "1.6.0",
"react-native-flash-message": "~0.4.2",
"react-native-gesture-handler": "~2.24.0",
"react-native-keyboard-controller": "^1.18.6",
"react-native-logs": "~5.3.0",
"react-native-mmkv": "~3.1.0",
"react-native-reanimated": "~3.17.4",
"react-native-restart": "0.0.27",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"react-native-web": "^0.20.0",
"react-native-webview": "~13.13.1",
"react-query-kit": "~3.3.0",
"tailwind-variants": "~0.2.1",
"zod": "~3.23.8",
"zustand": "~4.5.5"
},
"devDependencies": {
"@babel/core": "~7.26.0",
"@commitlint/cli": "~19.2.2",
"@commitlint/config-conventional": "~19.2.2",
"@expo/config": "^11.0.0",
"@testing-library/jest-dom": "~6.5.0",
"@testing-library/react-native": "~12.9.0",
"@types/geojson": "~7946.0.16",
"@types/i18n-js": "~3.8.9",
"@types/jest": "~29.5.14",
"@types/lodash.memoize": "~4.1.9",
"@types/mapbox-gl": "3.4.1",
"@types/react": "~19.0.10",
"@types/react-native-base64": "~0.2.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-jest": "~30.0.0",
"concurrently": "9.2.1",
"cross-env": "~7.0.3",
"dotenv": "~16.4.5",
"electron": "40.0.0",
"electron-builder": "26.4.0",
"electron-squirrel-startup": "^1.0.1",
"eslint": "~8.57.0",
"eslint-config-expo": "~9.2.0",
"eslint-config-prettier": "~9.1.0",
"eslint-import-resolver-typescript": "~3.6.3",
"eslint-plugin-i18n-json": "~4.0.0",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-react-compiler": "19.0.0-beta-a7bf2bd-20241110",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-tailwindcss": "~3.15.2",
"eslint-plugin-testing-library": "~6.2.2",
"eslint-plugin-unicorn": "~46.0.1",
"eslint-plugin-unused-imports": "~2.0.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"jest-expo": "~53.0.14",
"jest-junit": "~16.0.0",
"lint-staged": "~15.2.9",
"np": "~10.0.7",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "~3.3.3",
"react-native-svg-transformer": "~1.5.1",
"tailwindcss": "3.4.4",
"ts-jest": "~29.1.2",
"ts-node": "~10.9.2",
"typescript": "5.8.x",
"wait-on": "9.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Resgrid/Unit.git"
},
"packageManager": "yarn@1.22.22",
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false,
"exclude": [
"react-native-restart",
"lucide-react-native",
"react-native-callkeep",
"expo-av"
]
}
},
"install": {
"exclude": [
"eslint-config-expo",
"react-native@~0.76.6",
"react-native-reanimated@~3.16.1",
"react-native-gesture-handler@~2.20.0",
"react-native-screens@~4.4.0",
"react-native-safe-area-context@~4.12.0",
"react-native-webview@~13.12.5"
]
}
},
"osMetadata": {
"initVersion": "7.0.4"
},
"resolutions": {
"@expo/metro-config": "~0.20.18",
"form-data": "4.0.4",
"promise": "8.3.0"
}
}