generated from florob95/node-ts-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "grpc-to-http",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node ./build/server.js",
"start:watch": "node --watch-path=./build ./build/server.js",
"start:dev": "concurrently --prefixColors auto \"npm run start:watch\" \"npm run watch\"",
"build": "node build.js",
"watch": "node watch.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier .",
"format:fix": "prettier . --write",
"gen:proto": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=outputServices=grpc --ts_proto_out=src/generated -I=src/protos src/protos/*.proto"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@grpc/grpc-js": "^1.11.3",
"@grpc/proto-loader": "^0.7.13"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"ts-proto": "^2.2.1",
"@types/node": "^22.7.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1"
}
}