- 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
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "simple-plist",
|
|
"author": "Joe Wollard",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/wollardj/simple-plist.git",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/wollardj/simple-plist.git"
|
|
},
|
|
"version": "1.3.1",
|
|
"description": "A wrapper utility for interacting with plist data.",
|
|
"main": "dist/index",
|
|
"files": [
|
|
"./dist"
|
|
],
|
|
"types": "./dist/index.d.ts",
|
|
"keywords": [
|
|
"plist",
|
|
"binary",
|
|
"bplist",
|
|
"xml"
|
|
],
|
|
"scripts": {
|
|
"build:tsc": "tsc --project ./tsconfig-build.json",
|
|
"build": "run-s clean:build build:tsc",
|
|
"clean:build": "rimraf dist",
|
|
"clean": "rimraf __tests__/write-test* coverage",
|
|
"prepare": "husky install",
|
|
"pretest": "clean",
|
|
"test": "jest --coverage --verbose"
|
|
},
|
|
"dependencies": {
|
|
"bplist-creator": "0.1.0",
|
|
"bplist-parser": "0.3.1",
|
|
"plist": "^3.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^16.11.26",
|
|
"@types/plist": "^3.0.2",
|
|
"husky": "^7.0.4",
|
|
"jest": "^27.5.1",
|
|
"lint-staged": "^11.2.6",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.6.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.0.7",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js,json,md}": "yarn prettier --write"
|
|
}
|
|
} |