- 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
78 lines
2.1 KiB
JSON
78 lines
2.1 KiB
JSON
{
|
|
"name": "js-yaml",
|
|
"version": "4.2.0",
|
|
"description": "YAML 1.2 parser and serializer",
|
|
"keywords": [
|
|
"yaml",
|
|
"parser",
|
|
"serializer",
|
|
"pyyaml"
|
|
],
|
|
"author": "Vladimir Zapparov <dervus.grim@gmail.com>",
|
|
"contributors": [
|
|
"Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)",
|
|
"Vitaly Puzrin <vitaly@rcdesign.ru> (https://github.com/puzrin)",
|
|
"Martin Grenfell <martin.grenfell@gmail.com> (http://got-ravings.blogspot.com)"
|
|
],
|
|
"license": "MIT",
|
|
"repository": "nodeca/js-yaml",
|
|
"funding": [
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/puzrin"
|
|
},
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/nodeca"
|
|
}
|
|
],
|
|
"files": [
|
|
"index.js",
|
|
"lib/",
|
|
"bin/",
|
|
"dist/"
|
|
],
|
|
"bin": {
|
|
"js-yaml": "bin/js-yaml.js"
|
|
},
|
|
"module": "./dist/js-yaml.mjs",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/js-yaml.mjs",
|
|
"require": "./index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint-fix": "eslint . --fix",
|
|
"test": "npm run lint && npm run test:core && npm run test:build",
|
|
"test:core": "node --test test/core/*.test.*",
|
|
"test:build": "npm run build && node --test test/build/*.test.*",
|
|
"coverage": "npm run build && c8 --include 'lib/**' -r text -r html -r lcov node --test test/core/*.test.*",
|
|
"build": "node support/build-dist.mjs",
|
|
"build:demo": "npm run lint && node support/build_demo.mjs",
|
|
"gh-demo": "npm run build:demo && gh-pages -d demo -f",
|
|
"prepack": "npm test && npm run build && npm run build:demo",
|
|
"postpublish": "npm run gh-demo"
|
|
},
|
|
"unpkg": "dist/js-yaml.min.js",
|
|
"jsdelivr": "dist/js-yaml.min.js",
|
|
"dependencies": {
|
|
"argparse": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"c8": "^11.0.0",
|
|
"codemirror": "^5.65.21",
|
|
"eslint": "^9.39.4",
|
|
"fast-check": "^4.8.0",
|
|
"gh-pages": "^6.3.0",
|
|
"neostandard": "^0.13.0",
|
|
"tinybench": "^6.0.2",
|
|
"vite": "^8.0.14",
|
|
"vite-plugin-node-polyfills": "^0.28.0",
|
|
"vite-plugin-singlefile": "^2.3.3",
|
|
"workerpool": "^10.0.2"
|
|
}
|
|
}
|