Files
smart-city-digital-twin-mar…/smart-app-city/frontend/node_modules/@expo/vector-icons/package.json
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

56 lines
1.8 KiB
JSON

{
"name": "@expo/vector-icons",
"sideEffects": false,
"version": "14.1.0",
"description": "Built-in support for popular icon fonts and the tooling to create your own Icon components from your font and glyph map. This is a wrapper around react-native-vector-icons to make it compatible with Expo.",
"main": "build/IconsLazy.js",
"module": "build/Icons.js",
"types": "build/Icons.d.ts",
"scripts": {
"copy-vendor": "rm -rf build/vendor && cp -R src/vendor build/vendor",
"generate-lazy": "expo-module babel --config-file ./babel.config.build.js --source-maps --out-file build/IconsLazy.js build/Icons.js",
"build": "EXPO_NONINTERACTIVE=1 expo-module build && npm run generate-lazy && npm run copy-vendor",
"build:dev": "expo-module build",
"clean": "expo-module clean",
"test": "expo-module test",
"lint": "expo-module lint",
"prepare": "expo-module prepare && npm run generate-lazy && npm run copy-vendor",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/vector-icons.git"
},
"keywords": [
"expo"
],
"author": "Brent Vatne",
"contributors": [
"Evan Bacon <bacon@expo.io> (https://github.com/evanbacon)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/vector-icons/issues"
},
"jest": {
"preset": "expo-module-scripts"
},
"homepage": "https://expo.github.io/vector-icons",
"devDependencies": {
"@babel/core": "^7.23.7",
"@types/react-native": "~0.64",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"expo-font": "^11.10.0",
"expo-module-scripts": "^3.4.0",
"prettier": "^3.1.1"
},
"dependencies": {},
"peerDependencies": {
"expo-font": "*",
"react": "*",
"react-native": "*"
}
}