-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "nats-jetstream-transport",
"version": "0.3.2",
"description": "Nats JetStream Transport for NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/vinceveve/nats-jetstream-transport"
},
"keywords": [
"nestjs",
"transport",
"microservices",
"nats",
"jetstream",
"pubsub",
"event",
"eventsourcing"
],
"scripts": {
"test": "exit 0",
"build": "rimraf dist && tsc",
"watch": "tsc -w",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"author": "Vincent Vermersch [[email protected]]",
"authors": [
"Bernt Anker [[email protected]]"
],
"license": "ISC",
"dependencies": {
"cloudevents": "^6.0.3",
"nats": "^2.10.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0"
},
"devDependencies": {
"@nestjs/common": "^8.2.0",
"@nestjs/core": "^8.2.0",
"@nestjs/microservices": "^8.2.0",
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
}
}