forked from p-fedyukovich/nestjs-google-pubsub-microservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@tawk.to/nestjs-google-pubsub-microservice",
"version": "0.5.1",
"description": "NestJS Google Cloud Pub/Sub Microservice Transport",
"author": "tawk.to",
"license": "MIT",
"main": "dist/index.js",
"url": "https://github.com/tawk/nestjs-google-pubsub-microservice#readme",
"keywords": [
"google-pubsub",
"pubsub",
"nestjs",
"microservice",
"typescript",
"nestjs-microservices",
"nestjs-library"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:yarn": "yarn build",
"publish:yarn": "yarn publish --access public",
"prepublish:next": "yarn build",
"publish:next": "yarn publish --access public --tag next",
"test": "jest --runInBand",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
"prerelease": "yarn build",
"release": "release-it"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@google-cloud/pubsub": "^3.4.1",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/microservices": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/chai": "^4.2.21",
"@types/jest": "28.1.8",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "4.3.4",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"google-pubsub-emulator": "^6.0.0",
"husky": "4.3.6",
"jest": "28.1.3",
"lint-staged": "11.1.2",
"prettier": "2.4.1",
"reflect-metadata": "0.1.13",
"release-it": "14.11.5",
"rxjs": "7.3.0",
"rxjs-compat": "6.6.7",
"sinon": "11.1.2",
"supertest": "^6.3.3",
"ts-jest": "28.0.8",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@google-cloud/pubsub": "^3.0.0",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/microservices": "^9.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/p-fedyukovich/nestjs-google-pubsub-microservice"
},
"dependencies": {},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"testTimeout": 10000
}
}