-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "@henken.club/avatar-grpc-service",
"private": true,
"scripts": {
"dev": "ts-node-dev src/main.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/main.js",
"protogen": "scripty",
"typecheck": "tsc --noEmit",
"lint": "run-s -cn lint:*",
"lint:eslint": "scripty",
"lint:prettier": "scripty",
"fmt": "run-s -cn fmt:*",
"fmt:eslint": "yarn lint:eslint --fix",
"fmt:prettier": "yarn lint:prettier --write"
},
"dependencies": {
"@grpc/grpc-js": "^1.3.7",
"protobufjs": "^6.11.2"
},
"devDependencies": {
"@arkweid/lefthook": "0.7.6",
"@shopify/eslint-plugin": "^40.3.0",
"@shopify/prettier-config": "^1.1.2",
"@tsconfig/node16": "^1.0.2",
"@types/node": "^16.4",
"cspell": "^5.8.0",
"eslint": "^7.30.0",
"eslint-plugin-unused-imports": "^1.1.2",
"grpc-tools": "^1.11.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"scripty": "^2.0.0",
"ts-node-dev": "^1.1.8",
"ts-proto": "^1.82.5",
"typescript": "^4.3.5"
}
}