- Removed the logging package from pnpm-lock.yaml to streamline dependencies. - Updated README.md to reflect changes in the backend architecture, including new integrations and improved service descriptions. - Enhanced Dockerfile configurations for both backend and frontend applications to ensure proper TypeScript compilation. - Introduced Suspense boundaries in LoginView and ServiceManagementSection components for better loading states. - Updated documentation paths in README.md to point to the new architecture directory for improved navigation. - Improved environment variable setup instructions for clarity and completeness.
36 lines
938 B
JSON
36 lines
938 B
JSON
{
|
|
"name": "@customer-portal/logging",
|
|
"version": "1.0.0",
|
|
"description": "Centralized logging utilities for customer portal",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build --force",
|
|
"dev": "tsc -w --preserveWatchOutput",
|
|
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
"type-check": "NODE_OPTIONS=\"--max-old-space-size=2048 --max-semi-space-size=128\" tsc --project tsconfig.json --noEmit",
|
|
"test": "echo \"No tests specified for logging package\"",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"dependencies": {
|
|
"pino": "^9.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|