-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 867 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
{
"name": "@trpc-overview/root",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "Ivan Levchenko <me@livan.pro> (https://github.com/Livan-pro)",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"all:format": "yarn workspaces foreach -Avp run format",
"all:format-fix": "yarn workspaces foreach -Avp run format-fix",
"all:lint": "yarn workspaces foreach -Avp run lint",
"all:lint-fix": "yarn workspaces foreach -Avp run lint-fix",
"all:typecheck": "yarn workspaces foreach -Avp run typecheck",
"format": "prettier --ignore-path .prettierignore-root --check .",
"format-fix": "prettier --ignore-path .prettierignore-root --write ."
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8"
},
"packageManager": "yarn@4.6.0"
}