Files
smart-city-digital-twin-mar…/smart-app-city/frontend/node_modules/logkitty/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

68 lines
1.8 KiB
JSON

{
"name": "logkitty",
"version": "0.7.1",
"description": "Display pretty Android and iOS logs without Android Studio or Console.app, with intuitive Command Line Interface.",
"keywords": [
"logcat",
"cli",
"android",
"android studio",
"ios",
"Console.app",
"console",
"log",
"logs",
"logging"
],
"repository": {
"type": "git",
"url": "https://github.com/zamotany/logkitty.git"
},
"author": "Paweł Trysła <zamotany.oss@gmail.com>",
"bugs": {
"url": "https://github.com/zamotany/logkitty/issues"
},
"homepage": "https://github.com/zamotany/logkitty",
"license": "MIT",
"bin": "bin/logkitty.js",
"main": "build/api.js",
"files": [
"docs",
"bin",
"build"
],
"scripts": {
"lint": "eslint --ext '.js,.ts' ./src",
"build:source": "babel src --out-dir build --extensions '.js,.ts' --ignore '**/__tests__/**' --source-maps --delete-dir-on-start",
"build:def": "tsc --emitDeclarationOnly",
"prepare": "yarn build:source && yarn build:def",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"ansi-fragments": "^0.2.1",
"dayjs": "^1.8.15",
"yargs": "^15.1.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@callstack/eslint-config": "^9.1.0",
"@types/jest": "^24.0.11",
"@types/node": "^10.12.18",
"@types/yargs": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"babel-jest": "^24.7.1",
"eslint": "^6.8.0",
"jest": "^24.7.1",
"typescript": "^3.7.4"
},
"jest": {
"testRegex": "/__tests__/.*\\.(test|spec)\\.ts?$"
}
}