-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 895 Bytes
/
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
{
"name": "grpc-demo-apps",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"proto:client": "turbo run proto:client --parallel",
"proto:types": "turbo run proto:types --parallel"
},
"nano-staged": {
"*.{js,ts,json}": "prettier --write",
"package.json": "sort-package-json"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"concurrently": "9.1.0",
"eslint-config-custom": "*",
"husky": "9.1.7",
"nano-staged": "0.8.0",
"prettier": "latest",
"sort-package-json": "2.12.0",
"tsx": "4.19.2",
"turbo": "2.3.3"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=14.0.0"
}
}