This repository has been archived by the owner on Oct 1, 2023. It is now read-only.
forked from ssut/nestjs-sqs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@ssut/nestjs-sqs",
"deprecated": "This package is deprecated. Please use the original package @ssut/nestjs-sqs",
"version": "1.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test:e2e": "npx jest --config=jest-e2e.config.js --detectOpenHandles --runInBand --forceExit",
"build": "npx rimraf -rf dist && tsc -p tsconfig.json",
"format": "npx prettier --write **/*.{ts,json}",
"lint": "npx eslint \"lib/**/*.ts\" --fix"
},
"bugs": {
"url": "https://github.com/ssut/nestjs-sqs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssut/nestjs-sqs.git"
},
"keywords": [],
"author": "Suhun Han <[email protected]>",
"license": "MIT",
"dependencies": {
"@nestjs-plus/discovery": "^2.0.2",
"aws-sdk": "^2.985.0",
"sqs-consumer": "^5.6.0",
"sqs-producer": "^2.1.0"
},
"devDependencies": {
"@nestjs/common": "^8.0.6",
"@nestjs/core": "^8.0.6",
"@nestjs/testing": "^8.0.6",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"aws-sdk": "^2.985.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^27.1.1",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.1.0",
"sqs-consumer": "^5.6.0",
"sqs-producer": "^2.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.4.2",
"wait-for-expect": "^3.0.2"
},
"peerDependencies": {
"@nestjs/common": "^6.10.11 || ^7.0.0",
"@nestjs/core": "^6.10.11 || ^7.0.0"
}
}