-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.5 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
{
"name": "twinte-course-service",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "cross-env LOG_LEVEL=trace ts-node ./src/index.ts",
"build": "rm -rf ./dist && tsc && rm -rf ./dist/__tests__ && mv ./dist/src/* ./dist/",
"proto": "./proto-gen.sh",
"test": "cross-env LOG_LEVEL=off jest --runInBand --coverage",
"client": "grpcc --proto ./protos/CourseService.proto --address localhost:50051 -i",
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/uuid": "^8.3.0",
"@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",
"grpc-tools": "^1.10.0",
"grpcc": "^1.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"ts-protoc-gen": "^0.14.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.2.2",
"@grpc/proto-loader": "^0.5.6",
"cross-env": "^7.0.3",
"log4js": "^6.3.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"twinte-parser": "^2.3.0",
"typeorm": "^0.2.29",
"uuid": "^8.3.2",
"protobufjs": "github:iFwu/protobuf.js"
}
}