-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "@ssut/nestjs-sqs",
"version": "3.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test:e2e": "vitest",
"build": "rimraf -rf dist && tsc -p tsconfig.json"
},
"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 <ssut@ssut.me>",
"license": "MIT",
"dependencies": {
"@golevelup/nestjs-discovery": "^4.0.1",
"sqs-consumer": "^11.0.1",
"sqs-producer": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
"@nestjs/testing": "^10.3.10",
"prettier": "^3.3.2",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3",
"unplugin-auto-import": "^0.18.0",
"vitest": "^2.0.2"
},
"peerDependencies": {
"@aws-sdk/client-sqs": "^3.600.0",
"@nestjs/common": "^6.10.11 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^6.10.11 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"packageManager": "pnpm@9.5.0"
}