Files
smart-city-digital-twin-mar…/smart-app-city/frontend/node_modules/json-schema-deref-sync/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

54 lines
1.2 KiB
JSON

{
"author": {
"name": "Bojan D.",
"email": "dbojan@gmail.com"
},
"name": "json-schema-deref-sync",
"description": "Simple Node.js JSON Schema dereferencer",
"keywords": [
"json",
"schema",
"deref"
],
"version": "0.13.0",
"homepage": "https://github.com/bojand/json-schema-deref-sync",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bojand/json-schema-deref-sync.git"
},
"bugs": {
"url": "http://github.com/bojand/json-schema-deref-sync/issues"
},
"engines": {
"node": ">=6.0.0"
},
"main": "lib/index.js",
"dependencies": {
"clone": "^2.1.2",
"dag-map": "~1.0.0",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.13",
"md5": "~2.2.0",
"memory-cache": "~0.2.0",
"traverse": "~0.6.6",
"valid-url": "~1.0.9"
},
"devDependencies": {
"async": "^2.6.2",
"chai": "^4.2.0",
"fs.extra": "~1.3.2",
"js-yaml": "^3.13.1",
"jsdoc-to-markdown": "^4.0.0",
"mocha": "^6.1.4",
"standard": "~12.0.0"
},
"scripts": {
"test": "mocha",
"docs": "jsdoc2md \"lib/**/*.js\" --template readme.hbs > README.md"
},
"directories": {
"test": "test"
}
}