-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.79 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
{
"name": "@moveaxlab/nestjs-grpc-client",
"version": "10.1.0",
"main": "./lib/index.js",
"module": "./esm/index.mjs",
"types": "./types/index.d.ts",
"contributors": [
"Michelle Laurenti <[email protected]>",
"Mattias Ezequiel Mignone <[email protected]>",
"Furio Dipoppa <[email protected]>"
],
"homepage": "https://github.com/moveaxlab/nestjs-grpc-client",
"repository": {
"type": "git",
"directory": "https://github.com/moveaxlab/nestjs-grpc-client"
},
"license": "MIT",
"private": false,
"sideEffects": false,
"files": [
"lib",
"esm",
"types"
],
"scripts": {
"build": "npm-run-all build:*",
"build:cjs": "npm-run-all build:cjs:*",
"build:cjs:code": "nest build --config ./nest-cli.json",
"build:esm": "npm-run-all build:esm:*",
"build:esm:code": "nest build --config ./nest-cli-esm.json",
"build:esm:rename": "renamer --path-element ext --find .js --replace .mjs \"./esm/**\"",
"fix:lint": "eslint --ext .ts --fix .",
"generate:proto": "bash ./scripts/generate.sh",
"test": "npm-run-all test:*",
"test:types": "tsc -p tsconfig.json",
"test:lint": "eslint --ext .ts .",
"test:unit": "jest --pass-with-no-tests --run-in-band ./tests/"
},
"dependencies": {
"dataloader": "^2.1.0"
},
"peerDependencies": {
"@grpc/grpc-js": "^1.8.1",
"@nestjs/common": "^10",
"@nestjs/core": "^10",
"@nestjs/graphql": "^12",
"lru-cache": "^10",
"protobufjs": "^7.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@grpc/grpc-js": "^1.8.1",
"@nestjs/apollo": "^10.1.7",
"@nestjs/cache-manager": "^2.2.1",
"@nestjs/cli": "^10.3.2",
"@nestjs/common": "^10.3.3",
"@nestjs/core": "^10.3.3",
"@nestjs/graphql": "^12.1.1",
"@nestjs/platform-express": "^10.3.3",
"@nestjs/testing": "^10.3.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"apollo-server-express": "^3.11.1",
"cache-manager": "^5.4.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"graphql": "^16.8.1",
"jest": "^29.3.1",
"jest-extended": "^3.2.1",
"lru-cache": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"protobufjs": "^7.1.2",
"reflect-metadata": "^0.1.13",
"renamer": "^4.0.0",
"rxjs": "^7.8.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"typescript-eslint-language-service": "^5.0.0"
},
"keywords": [
"grpc",
"nestjs",
"graphql"
]
}