-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.02 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.02 KB
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
{
"name": "dotnet-grpc-sql-proxy",
"version": "0.0.0",
"description": "Grpc Proxy for Sql Server",
"scripts": {
"build": "dotnet build",
"start": "dotnet start",
"prepare": "husky",
"lint:stage:fix": "lint-staged --relative",
"lint:fix": "dotnet format",
"lint": "dotnet format --verify-no-changes",
"restore": "dotnet restore",
"test": "dotnet test",
"prepare-test-db": "cd devops && sh prepare-db.sh && cd ..",
"unload-test-db": "cd devops && docker compose down && cd ..",
"docker:build": "docker build . -t test-grpc-client",
"docker:run": "docker run -d --network=host test-grpc-client",
"test:coverage": "dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=./coverage/lcov.info"
},
"devDependencies": {
"@types/lint-staged": "^13.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"run-container": "^2.0.12"
},
"lint-staged": {
"*.cs": "dotnet format --include"
},
"keywords": [],
"author": "",
"license": "ISC"
}