- 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
60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
"version": "0.0.6",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"scripts": {
|
|
"start": "tsdx watch",
|
|
"build": "tsdx build",
|
|
"test": "tsdx test",
|
|
"lint": "tsdx lint",
|
|
"prepare": "tsdx build"
|
|
},
|
|
"peerDependencies": {},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "tsdx lint"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"name": "hermes-profile-transformer",
|
|
"author": {
|
|
"name": "Saphal Patro",
|
|
"email": "saphal1998@gmail.com",
|
|
"url": "http://github.com/saphal1998"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/MLH-Fellowship/hermes-profile-transformer"
|
|
},
|
|
"module": "dist/hermes-tracing-profile-transformer.esm.js",
|
|
"devDependencies": {
|
|
"husky": "^4.2.5",
|
|
"tsdx": "^0.13.2",
|
|
"tslib": "^2.0.0",
|
|
"typescript": "^3.9.5"
|
|
},
|
|
"dependencies": {
|
|
"source-map": "^0.7.3"
|
|
},
|
|
"keywords": [
|
|
"profiling",
|
|
"hermes",
|
|
"transformation",
|
|
"transformers",
|
|
"dev-tools"
|
|
]
|
|
}
|