- 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
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "badgin",
|
|
"version": "1.2.3",
|
|
"description": "Badgin makes it easy to subtly notify the user that there is some new activity that might require their attention, or it can be used to indicate a small amount of information, such as an unread count.",
|
|
"author": "Julian Hundeloh",
|
|
"homepage": "https://github.com/jaulz/badgin",
|
|
"main": "build/index.js",
|
|
"module": "build/index.es.js",
|
|
"files": [
|
|
"build"
|
|
],
|
|
"types": "build/index.d.ts",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "",
|
|
"build": "rm -rf ./build/ && rollup -c",
|
|
"watch": "concurrently --kill-others \"live-server\" \"rollup -cw\"",
|
|
"prepublishOnly": "yarn run ci",
|
|
"ci": "yarn build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jaulz/badgin"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash.merge": "^4.6.6",
|
|
"concurrently": "^5.3.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"husky": "^4.3.0",
|
|
"live-server": "^1.2.1",
|
|
"prettier": "^2.1.2",
|
|
"pretty-quick": "^3.0.2",
|
|
"rollup": "^2.28.2",
|
|
"rollup-plugin-commonjs": "^10.0.0",
|
|
"rollup-plugin-node-resolve": "^5.0.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-typescript2": "^0.27.3",
|
|
"semantic-release": "^17.1.2",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"semi": false
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"post-merge": "yarn install",
|
|
"post-rewrite": "yarn install",
|
|
"pre-commit": "pretty-quick --staged --verbose"
|
|
}
|
|
},
|
|
"dependencies": {}
|
|
}
|