- 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
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "@expo/image-utils",
|
|
"version": "0.5.1",
|
|
"description": "A package used by Expo CLI for processing images",
|
|
"main": "build/index.js",
|
|
"scripts": {
|
|
"build": "expo-module tsc",
|
|
"clean": "expo-module clean",
|
|
"lint": "expo-module lint",
|
|
"prepare": "expo-module clean && yarn run build",
|
|
"prepublishOnly": "expo-module prepublishOnly",
|
|
"test": "expo-module test",
|
|
"test:e2e": "yarn run prepare && expo-module test --config e2e/jest.config.js",
|
|
"typecheck": "expo-module typecheck",
|
|
"watch": "expo-module tsc --watch --preserveWatchOutput"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/expo/expo.git",
|
|
"directory": "packages/@expo/image-utils"
|
|
},
|
|
"keywords": [
|
|
"json"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/expo/expo/issues"
|
|
},
|
|
"homepage": "https://github.com/expo/expo/tree/main/packages/%40expo/image-utils#readme",
|
|
"files": [
|
|
"build"
|
|
],
|
|
"dependencies": {
|
|
"@expo/spawn-async": "^1.7.2",
|
|
"chalk": "^4.0.0",
|
|
"fs-extra": "9.0.0",
|
|
"getenv": "^1.0.0",
|
|
"jimp-compact": "0.16.1",
|
|
"node-fetch": "^2.6.0",
|
|
"parse-png": "^2.1.0",
|
|
"resolve-from": "^5.0.0",
|
|
"semver": "^7.6.0",
|
|
"tempy": "0.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^9.0.1",
|
|
"@types/getenv": "^0.7.0",
|
|
"@types/node-fetch": "^2.6.5",
|
|
"@types/semver": "^6.0.0",
|
|
"expo-module-scripts": "^3.3.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"gitHead": "ee4f30ef3b5fa567ad1bf94794197f7683fdd481"
|
|
}
|