- 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
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "assert",
|
|
"version": "2.1.0",
|
|
"description": "The assert module from Node.js, for the browser.",
|
|
"main": "build/assert.js",
|
|
"files": [
|
|
"build/assert.js",
|
|
"build/internal"
|
|
],
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/browserify/commonjs-assert",
|
|
"repository": "browserify/commonjs-assert",
|
|
"scripts": {
|
|
"build": "babel assert.js test.js --out-dir build && babel internal --out-dir build/internal && babel test --out-dir build/test",
|
|
"prepare": "npm run build",
|
|
"dev": "babel assert.js test.js --watch --out-dir build & babel internal --watch --out-dir build/internal & babel test --watch --out-dir build/test",
|
|
"test": "npm run build && npm run test:nobuild",
|
|
"test:nobuild": "node build/test.js",
|
|
"test:source": "node test.js",
|
|
"test:browsers": "airtap build/test.js",
|
|
"test:browsers:local": "npm run test:browsers -- --local"
|
|
},
|
|
"keywords": [
|
|
"assert",
|
|
"browser"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.22.15",
|
|
"@babel/core": "^7.22.15",
|
|
"@babel/preset-env": "^7.22.15",
|
|
"airtap": "^2.0.4",
|
|
"array-fill": "^1.2.0",
|
|
"core-js": "^3.32.2",
|
|
"cross-env": "^5.2.1",
|
|
"object.entries": "^1.1.7",
|
|
"object.getownpropertydescriptors": "^2.1.7",
|
|
"tape": "^5.6.6"
|
|
},
|
|
"dependencies": {
|
|
"call-bind": "^1.0.2",
|
|
"is-nan": "^1.3.2",
|
|
"object-is": "^1.1.5",
|
|
"object.assign": "^4.1.4",
|
|
"util": "^0.12.5"
|
|
}
|
|
}
|