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

72 lines
1.5 KiB
JSON

{
"name": "structured-headers",
"version": "0.4.1",
"description": "Implementation of RFC8941, structured headers for HTTP.",
"main": "dist/index.js",
"scripts": {
"test": "make test",
"prepare": "make build",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/evert/structured-header.git"
},
"keywords": [
"http",
"structured-header",
"RFC8941",
"headers"
],
"author": "Evert Pot <me@evertpot.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evert/structured-header/issues"
},
"files": [
"src/",
"dist/",
"browser/structured-header.min.js",
"browser/structured-header.min.js.map",
"LICENSE"
],
"homepage": "https://github.com/evert/structured-header#readme",
"devDependencies": {
"@types/node": "^12.20.13",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"base32-decode": "^1.0.0",
"base32-encode": "^1.1.1",
"chai": "^4.2.0",
"eslint": "^7.26.0",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"nyc": {
"extension": [
".ts"
]
},
"mocha": {
"require": [
"ts-node/register"
],
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
],
"exit": true
},
"browserslist": [
"last 2 versions",
"not ie 11",
"not op_mini all"
]
}