45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@rdx/logger",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist && rm -rf node_modules",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "jest"
|
|
},
|
|
"jest": {
|
|
"preset": "@repo/jest-presets/node"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@repo/eslint-config": "workspace:*",
|
|
"@repo/jest-presets": "workspace:*",
|
|
"@repo/typescript-config": "workspace:*",
|
|
"@types/dotenv": "^8.2.3",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.15.2",
|
|
"@types/react": "^19.1.2",
|
|
"@types/winston": "^2.4.4",
|
|
"eslint": "^9.25.1",
|
|
"jest": "^29.7.0",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"cls-rtracer": "^2.6.3",
|
|
"dotenv": "^16.5.0",
|
|
"path": "^0.12.7",
|
|
"winston": "^3.17.0",
|
|
"winston-daily-rotate-file": "^5.0.0"
|
|
}
|
|
}
|