Files
standardnotes-server/packages/domain-events-infra/package.json
2023-05-05 11:17:26 +02:00

49 lines
1.2 KiB
JSON

{
"name": "@standardnotes/domain-events-infra",
"version": "1.10.2",
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"description": "Domain Events Infrastructure SDK used in SN projects",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts"
],
"publishConfig": {
"access": "public"
},
"author": "Standard Notes",
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build",
"lint": "eslint . --ext .ts",
"test": "jest spec --coverage"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.259.0",
"@aws-sdk/client-sqs": "^3.259.0",
"@standardnotes/domain-events": "workspace:*",
"ioredis": "^5.2.4",
"newrelic": "^10.0.0",
"reflect-metadata": "^0.1.13",
"sqs-consumer": "^6.2.1",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.1",
"@types/newrelic": "^9.13.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}