-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
30 lines (30 loc) · 1 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
{
"name": "grpc-ts-demo",
"version": "1.0.0",
"author": "Mike Christensen",
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.2.2",
"@types/inquirer": "^6.5.0",
"@types/lowdb": "^1.0.9",
"@types/yargs": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"cli-table": "^0.3.1",
"eslint": "^6.8.0",
"grpc-tools": "^1.10.0",
"grpc_tools_node_protoc_ts": "^5.0.1",
"inquirer": "^7.0.4",
"lodash": "^4.17.15",
"lowdb": "^1.0.0",
"typescript": "^4.1.2",
"yargs": "^15.1.0"
},
"scripts": {
"lint": "yarn run eslint --fix --ext .ts src",
"prebuild": "yarn run lint",
"clean": "rm -rf ./src/proto && mkdir -p ./src/proto && rm -f chat-*.txt && rm -f db.json",
"build": "sh ./scripts/build-protos.sh ./songs.proto ./src/proto && yarn run tsc",
"start": "PORT=6789 node ./dist/index.js"
}
}