-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
65
66
67
68
69
70
{
"name": "@tazaki/nestjs-microservices-aws-iot",
"version": "0.0.7",
"description": "AWS IoT Client Wrapper for Nest.js Microservices",
"main": "dist/index.js",
"author": "TAZAKI <[email protected]> (https://tazaki.cc)",
"license": "MIT",
"homepage": "https://github.com/tazaki-cc/nestjs-microservices-aws-iot",
"repository": {
"type": "git",
"url": "git+https://github.com/tazaki-cc/nestjs-microservices-aws-iot.git"
},
"keywords": [
"nestjs",
"microservices",
"aws",
"iot"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "pnpm run build",
"publish:npm": "pnpm publish --access public",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
"release": "release-it"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/microservices": "^10.0.0",
"aws-crt": "^1.22.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-angular": "19.5.0",
"@nestjs/common": "10.4.4",
"@nestjs/core": "10.4.4",
"@nestjs/microservices": "^10.4.4",
"@types/jest": "29.5.13",
"@types/node": "22.7.4",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"aws-crt": "^1.22.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"husky": "9.1.6",
"jest": "29.7.0",
"prettier": "3.3.3",
"reflect-metadata": "0.2.2",
"release-it": "17.6.0",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"ts-jest": "29.2.5",
"typescript": "5.6.2"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"uuid": "^11.0.2"
}
}