-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.66 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
{
"name": "grpc-ts-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "cross-env LOG_LEVEL=trace ts-node --files src/index.ts",
"proto": "./proto-gen.sh",
"client": "grpcc -i -a localhost:50051 -p protos/InformationService.proto",
"test": "cp informations-sample.json informations.json && cross-env LOG_LEVEL=off ADMIN_USER=te_twin jest --runInBand --coverage",
"build": "rm -rf ./dist && tsc && rm -rf ./dist/__tests__ && mv ./dist/src/* ./dist",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src"
},
"devDependencies": {
"@types/clone": "^2.1.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"grpcc": "^1.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.2.2",
"@grpc/proto-loader": "^0.5.6",
"@types/pg": "^7.14.11",
"clone": "^2.1.2",
"cross-env": "^7.0.3",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"log4js": "^6.3.0",
"pg": "^8.5.1",
"protobufjs": "github:iFwu/protobuf.js",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31"
}
}