-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.99 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
59
60
61
62
63
64
{
"name": "@nestjs-packages/sqs",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"set": "docker-compose -f docker-compose.yml up",
"set:down": "docker-compose -f docker-compose.yml down",
"format": "prettier --write **/*.{ts,json}",
"lint": "eslint \"lib/**/*.ts\" --fix",
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config=jest-e2e.config.js --detectOpenHandles --runInBand --forceExit",
"prepublish:npm": "npm run format && npm run lint && npm run test && npm run build",
"publish:npm": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs-packages/sqs.git"
},
"author": "byeonghoon yang",
"license": "MIT",
"bugs": {
"url": "https://github.com/nestjs-packages/sqs/issues"
},
"homepage": "https://github.com/nestjs-packages/sqs#readme",
"dependencies": {
"@nestjs-plus/discovery": "^2.0.2",
"aws-sdk": "^2.948.0",
"sqs-consumer": "^6.0.0",
"sqs-producer": "^2.1.0"
},
"devDependencies": {
"@nestjs/common": "10.0.0",
"@nestjs/core": "10.0.0",
"@nestjs/testing": "10.0.0",
"@types/faker": "5.5.9",
"@types/jest": "29.5.8",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"codecov": "3.8.3",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"faker": "5.5.3",
"jest": "29.7.0",
"lodash": "4.17.21",
"prettier": "3.1.0",
"reflect-metadata": "0.1.13",
"rimraf": "5.0.5",
"rxjs": "7.8.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.2.2",
"wait-for-expect": "3.0.2"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || 10.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || 10.0.0"
}
}