Files
smart-city-digital-twin-mar…/smart-app-city/frontend/node_modules/nested-error-stacks/package.json
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

34 lines
908 B
JSON

{
"name": "nested-error-stacks",
"version": "2.0.1",
"description": "An Error subclass that will chain nested Errors and dump nested stacktraces",
"bugs": {
"url": "https://github.com/mdlavin/nested-error-stacks/issues"
},
"keywords": [
"error",
"nested",
"stack"
],
"repository": {
"type": "git",
"url": "https://github.com/mdlavin/nested-error-stacks.git"
},
"main": "index.js",
"files": [
"index.js",
"LICENSE"
],
"scripts": {
"test": "if node --version | grep -vE 'v(0|3)' > /dev/null 2>&1; then eslint . || exit -1; fi; if [ \"$RUN_ZUUL\" != \"true\" ]; then node_modules/.bin/mocha; else npm install zuul && node_modules/.bin/zuul -- test.js; fi"
},
"author": "Matt Lavin <matt.lavin@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.9.1",
"mocha": "^3.1.2",
"uuid": "^2.0.3"
}
}