Files
Eric FELIXINE e30ae8ed09 feat(smart-app): implement complete mobile app MVP
- App.tsx: full navigation (Auth stack + Main tabs with 5 screens)
- Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen
- HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors
- MapScreen: interactive map with layer toggles (6 layers)
- MarketplaceScreen: categories (6), products (5), search
- ChatScreen: AI chat with quick prompts (4), bot responses
- ProfileScreen: user info, stats, menu (9 items), logout
- AlertsScreen: alert list with severity, acknowledge
- SensorsScreen: sensor list with type filters (6 types), search
- ZonesScreen: zone cards with stats
- SettingsScreen: language picker (FR/EN/ES/DE), privacy, about
- Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n
- Hooks: useSensors, useAlerts, useNotifications, useLocation
- Components: Card, Button, LoadingSpinner, ErrorBoundary, Header
- Services: iotService, notificationService (with axios API client)
- Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN)
- Theme: colors.ts with full design system (Blue Ocean palette)
- Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
2026-06-01 18:00:35 -04:00

63 lines
1.7 KiB
JSON

{
"name": "babel-preset-expo",
"version": "11.0.15",
"description": "The Babel preset for Expo projects",
"main": "build/index.js",
"files": [
"build",
"lazy-imports-blacklist.js",
"react-compiler-runtime.js"
],
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expo/expo.git",
"directory": "packages/babel-preset-expo"
},
"keywords": [
"babel",
"babel-preset",
"expo",
"expo-web",
"react-native",
"react-native-web",
"metro",
"webpack"
],
"author": "Expo <support@expo.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo/issues"
},
"homepage": "https://github.com/expo/expo/tree/main/packages/babel-preset-expo#readme",
"eslintConfig": {
"extends": "universe/node"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.12.9",
"@babel/plugin-transform-export-namespace-from": "^7.22.11",
"@babel/plugin-transform-object-rest-spread": "^7.12.13",
"@babel/plugin-transform-parameters": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@babel/preset-react": "^7.22.15",
"@react-native/babel-preset": "0.74.87",
"babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517",
"babel-plugin-react-native-web": "~0.19.10",
"react-refresh": "^0.14.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"expo-module-scripts": "^3.3.0",
"jest": "^29.2.1"
},
"gitHead": "18f26edfd773f5afc2ea4e127aedae9c22ba1194"
}