- 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
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "big-integer",
|
|
"version": "1.6.52",
|
|
"author": "Peter Olson <peter.e.c.olson+npm@gmail.com>",
|
|
"description": "An arbitrary length integer library for Javascript",
|
|
"contributors": [],
|
|
"bin": {},
|
|
"scripts": {
|
|
"test": "tsc && karma start my.conf.js && node spec/tsDefinitions.js",
|
|
"minify": "uglifyjs BigInteger.js -o BigInteger.min.js"
|
|
},
|
|
"main": "./BigInteger",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:peterolson/BigInteger.js.git"
|
|
},
|
|
"keywords": [
|
|
"math",
|
|
"big",
|
|
"bignum",
|
|
"bigint",
|
|
"biginteger",
|
|
"integer",
|
|
"arbitrary",
|
|
"precision",
|
|
"arithmetic"
|
|
],
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.14.175",
|
|
"@types/node": "^7.10.2",
|
|
"coveralls": "^3.0.6",
|
|
"jasmine": "3.5.0",
|
|
"jasmine-core": "^3.5.0",
|
|
"karma": "^6.3.4",
|
|
"karma-cli": "^2.0.0",
|
|
"karma-coverage": "^2.0.3",
|
|
"karma-jasmine": "^4.0.1",
|
|
"karma-phantomjs-launcher": "^1.0.4",
|
|
"lodash": "^4.17.21",
|
|
"typescript": "^5.3.2",
|
|
"uglify-js": "^3.17.4"
|
|
},
|
|
"license": "Unlicense",
|
|
"engines": {
|
|
"node": ">=0.6"
|
|
},
|
|
"typings": "./BigInteger.d.ts"
|
|
}
|