-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 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
{
"name": "eventuous-connector-sidecar-mongo",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:typescript",
"build:typescript": "tsc -p .",
"watch": "npm run build:typescript -- -w",
"build:proto": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=outputClientImpl=false --ts_proto_opt=outputServices=grpc-js --ts_proto_opt=esModuleInterop=true --ts_proto_opt=outputTypeRegistry=true --ts_proto_out=./compiled/ ./proto/project.proto",
"prewatch": "npm run build:proto",
"prebuild": "npm run build:proto",
"start:server": "node server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.6.7",
"google-protobuf": "^3.20.1"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/google-protobuf": "^3.15.6",
"@types/node": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"ts-proto": "^1.112.1",
"typescript": "^4.6.3"
}
}