- 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
71 lines
1.7 KiB
JSON
71 lines
1.7 KiB
JSON
{
|
|
"name": "pngjs",
|
|
"version": "3.4.0",
|
|
"description": "PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.",
|
|
"contributors": [
|
|
"Alexandre Paré",
|
|
"Gaurav Mali",
|
|
"Gusts Kaksis",
|
|
"Kuba Niegowski",
|
|
"Luke Page",
|
|
"Pietajan De Potter",
|
|
"Steven Sojka",
|
|
"liangzeng",
|
|
"Michael Vogt",
|
|
"Xin-Xin Wang",
|
|
"toriningen",
|
|
"Eugene Kulabuhov"
|
|
],
|
|
"homepage": "https://github.com/lukeapage/pngjs",
|
|
"keywords": [
|
|
"PNG",
|
|
"decoder",
|
|
"encoder",
|
|
"js-png",
|
|
"node-png",
|
|
"parser",
|
|
"png",
|
|
"png-js",
|
|
"png-parse",
|
|
"pngjs"
|
|
],
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"main": "./lib/png.js",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"example": "examples",
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run prepublish",
|
|
"prepublish": "npm run browserify",
|
|
"browserify": "browserify lib/png.js --standalone png > browser.js",
|
|
"coverage": "istanbul -- cover node_modules/tape/bin/tape test/*-spec.js nolarge",
|
|
"coverage-report": "npm run coverage && istanbul report html",
|
|
"coveralls": "cat ./coverage/lcov.info | coveralls",
|
|
"test": "npm run lint && tape test/*-spec.js | tap-dot && node test/run-compare",
|
|
"lint": "eslint lib"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/lukeapage/pngjs2.git"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/lukeapage/pngjs2/issues"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^14.5.0",
|
|
"buffer-equal": "1.0.0",
|
|
"connect": "^3.4.0",
|
|
"eslint": "^4.1.0",
|
|
"istanbul": "^0.4.4",
|
|
"phantomjs-prebuilt": "^2.1.7",
|
|
"serve-static": "^1.10.0",
|
|
"tap-dot": "^2.0.0",
|
|
"tape": "^4.0.2"
|
|
}
|
|
}
|