-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.73 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
{
"name": "api-gateway",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "cross-env LOG_LEVEL=trace NODE_ENV=development ts-node --files src/index.ts",
"proto": "./proto-gen.sh",
"openapi": "openapi-typescript ./openapi-spec/spec.yml --output ./generated/openapi/schema.ts",
"build": "rm -rf ./dist && tsc && rm -rf ./dist/generated && mv ./dist/src/* ./dist/"
},
"devDependencies": {
"@types/clone": "^2.1.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@types/yamljs": "^0.2.31",
"@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",
"openapi-typescript": "^3.0.0",
"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",
"clone": "^2.1.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.10.4",
"express": "^4.17.1",
"express-openapi-validator": "^4.10.9",
"log4js": "^6.3.0",
"protobufjs": "github:iFwu/protobuf.js",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2",
"yamljs": "^0.3.0"
}
}