common-core-pkg
Version:
Common package for all the utils
79 lines (78 loc) • 2.04 kB
JSON
{
"name": "common-core-pkg",
"version": "1.2.8-dev",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exclude": [
"**/*.spec.ts",
"**/__tests__/**"
],
"scripts": {
"build": "tsc",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"lint": "eslint \"./src/**/*.ts\" --fix --config ./.eslintrc.js"
},
"keywords": [
"nestjs",
"telementry",
"prometheus"
],
"author": "Mantu Pani",
"license": "MIT",
"description": "",
"dependencies": {
"@aws-sdk/client-s3": "^3.937.0",
"@aws-sdk/s3-request-presigner": "^3.937.0",
"@nestjs/common": "^11.1.5",
"@nestjs/core": "^11.1.5",
"@nestjs/platform-express": "^11.1.5",
"@nestjs/swagger": "^11.2.0",
"@opentelemetry/auto-instrumentations-node": "^0.62.0",
"@opentelemetry/exporter-prometheus": "^0.203.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.203.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/semantic-conventions": "^1.36.0",
"async_hooks": "^1.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"express": "^5.1.0",
"ioredis": "^5.8.1",
"nest-winston": "^1.10.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@nestjs/testing": "^11.1.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.0.4",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}