-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.51 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
{
"name": "@nersent/grpc-nest",
"version": "1.0.0-dev.1",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build"
],
"bin": {
"grpc-nest": "build/cli/build_proto.js"
},
"repository": "https://github.com/nersent/grpc-nest.git",
"homepage": "https://nersent.com",
"author": "Mikołaj Palkiewicz <[email protected]>",
"license": "MIT",
"prettier": "@nersent/prettier-config",
"scripts": {
"dev": "tsc --watch -p tsconfig.json",
"build:cli": "tsc -p ./tsconfig.cli.json",
"example:proto": "",
"watch": "env-cmd -f ./.env tsc-watch -p ./tsconfig.example.json --onSuccess \"node build/example/index.js\"",
"clean": "rimraf ./build",
"build": "npm run clean && tsc -p ./tsconfig.lib.json && tsc -p ./tsconfig.cli.json",
"lint": "eslint ./",
"prepublishOnly": "npm run build",
"test": "jest",
"build:proto": "node generate_grpc.mjs ./proto ./proto/generated"
},
"devDependencies": {
"@nersent/eslint-config-ts": "^0.1.0",
"@nersent/prettier-config": "^0.1.0",
"@nestjs/platform-express": "^10.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^17.0.35",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"axios": "^0.27.2",
"eslint": "^8.13.0",
"eslint-config-next": "12.1.2",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.0.3",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"progress": "^2.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"tsc-watch": "^5.0.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.8.18",
"@grpc/proto-loader": "^0.7.8",
"@nersent/node-utils": "^0.0.1",
"@nestjs/common": "^10.1.0",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.1.0",
"@nestjs/microservices": "^10.1.0",
"@nestjs/platform-fastify": "^10.1.0",
"@protobuf-ts/plugin": "^2.9.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"execa": "^5.1.1",
"grpc-tools": "^1.12.4",
"grpc_tools_node_protoc_ts": "^5.3.3",
"joi": "^17.9.2",
"nest-winston": "^1.9.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"winston": "^3.10.0"
}
}