- 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.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "readable-stream",
|
|
"version": "2.3.8",
|
|
"description": "Streams3, a user-land copy of the stream library from Node.js",
|
|
"main": "readable.js",
|
|
"dependencies": {
|
|
"core-util-is": "~1.0.0",
|
|
"inherits": "~2.0.3",
|
|
"isarray": "~1.0.0",
|
|
"process-nextick-args": "~2.0.0",
|
|
"safe-buffer": "~5.1.1",
|
|
"string_decoder": "~1.1.1",
|
|
"util-deprecate": "~1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"assert": "^1.4.0",
|
|
"babel-polyfill": "^6.9.1",
|
|
"buffer": "^4.9.0",
|
|
"lolex": "^2.3.2",
|
|
"nyc": "^6.4.0",
|
|
"tap": "^0.7.0",
|
|
"tape": "^4.8.0"
|
|
},
|
|
"scripts": {
|
|
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js",
|
|
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
|
|
"cover": "nyc npm test",
|
|
"report": "nyc report --reporter=lcov"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/nodejs/readable-stream"
|
|
},
|
|
"keywords": [
|
|
"readable",
|
|
"stream",
|
|
"pipe"
|
|
],
|
|
"browser": {
|
|
"util": false,
|
|
"./readable.js": "./readable-browser.js",
|
|
"./writable.js": "./writable-browser.js",
|
|
"./duplex.js": "./duplex-browser.js",
|
|
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
|
|
},
|
|
"nyc": {
|
|
"include": [
|
|
"lib/**.js"
|
|
]
|
|
},
|
|
"license": "MIT"
|
|
}
|