-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.19 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
{
"name": "i-dont-work-in-a-bank",
"version": "0.0.0",
"author": "Daniel Tieber <daniel.tieber@dynatrace.com>",
"description": "An example of a gRPC application that demonstrates the interaction between a bank and a customer’s wallet",
"license": "UNLICENSED",
"scripts": {
"build": "tsc",
"lint": "eslint . --fix --ext .ts --cache --max-warnings 0",
"run:client": "node dist/client/client.js",
"run:server": "node dist/server/server.js",
"test": "jest"
},
"dependencies": {
"@grpc/grpc-js": "^1.10.5",
"pino": "^8.19.0",
"pino-pretty": "^11.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin": "^1.5.4",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-proto": "^1.171.0",
"typescript": "^5.4.3"
}
}