- 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
53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "requireg",
|
|
"version": "0.2.2",
|
|
"description": "Require and resolve global modules like a boss",
|
|
"homepage": "http://github.com/h2non/requireg",
|
|
"bugs": "https://github.com/h2non/requireg/issues",
|
|
"contributors": [
|
|
{
|
|
"name": "Tomas Aparicio",
|
|
"email": "tomas@aparicio.me"
|
|
},
|
|
{
|
|
"name": "Eugene Sharygin",
|
|
"url": "https://github.com/eush77"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/h2non/requireg.git"
|
|
},
|
|
"licenses": "MIT",
|
|
"main": "lib/requireg",
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"engines": {
|
|
"node": ">= 4.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha -u tdd --ui exports --reporter spec --slow 2000ms --bail"
|
|
},
|
|
"keywords": [
|
|
"global",
|
|
"npm",
|
|
"modules",
|
|
"module",
|
|
"require",
|
|
"import",
|
|
"resolve"
|
|
],
|
|
"dependencies": {
|
|
"nested-error-stacks": "~2.0.1",
|
|
"rc": "~1.2.7",
|
|
"resolve": "~1.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "~5.2.0",
|
|
"expect.js": "~0.3.1",
|
|
"rewire": "~4.0.1",
|
|
"semver": "~5.5.0"
|
|
}
|
|
}
|