mirror of
https://github.com/odoobiznes/BUS-Ticket-client.git
synced 2026-05-28 05:14:45 +00:00
Features: - OAuth authentication (Google, Facebook, Apple) - Two-factor authentication (TOTP, SMS, Email) - Multilingual support (cs, en, uk) - Multi-provider bus operators - Complete booking flow - Push notifications - Offline mode - Dark/light theme Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ['babel-preset-expo'],
|
|
plugins: [
|
|
'react-native-reanimated/plugin',
|
|
],
|
|
};
|
|
};
|