-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
{
"name": "@softrizon/gcp-pubsub",
"version": "0.0.1",
"description": "Custom transport strategy wrapper for Google Cloud Pub/Sub within the NestJS framework",
"author": "Softrizon LLC",
"repository": "softrizon/nestjs-gcp-pubsub",
"license": "MIT",
"private": false,
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/src"
],
"keywords": [
"pubsub",
"pub/sub",
"gcp pubsub",
"nestjs pubsub",
"google pubsub",
"pubsub wrapper",
"publish/subscribe",
"message queue"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"pubsub:emulator": "gcloud beta emulators pubsub start",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --config ./jest-coverage.config.ts",
"test:e2e": "jest --config ./jest-e2e.config.ts",
"prepublish": "npm run build && npm publish --dry-run"
},
"dependencies": {
"@google-cloud/pubsub": "3.4.1",
"@nestjs/common": "9.0.0",
"@nestjs/core": "9.0.0",
"@nestjs/microservices": "9.0.0",
"reflect-metadata": "0.1.13",
"rxjs": "7.8.0"
},
"devDependencies": {
"@nestjs/cli": "9.0.0",
"@nestjs/schematics": "9.0.0",
"@nestjs/testing": "9.0.0",
"@types/jest": "29.5.1",
"@types/node": "18.16.0",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "29.5.0",
"prettier": "2.3.2",
"rimraf": "5.0.0",
"source-map-support": "0.5.20",
"ts-jest": "29.1.0",
"ts-loader": "9.2.3",
"ts-node": "10.0.0",
"typescript": "4.3.5",
"webpack": "5.80.0"
}
}