forked from feature-sliced/steiger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 860 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 860 Bytes
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
{
"name": "@steiger/root",
"private": true,
"homepage": "https://github.com/feature-sliced/steiger",
"scripts": {
"format": "prettier --cache --write . \"!packages/**\" \"!tooling/**\"",
"check-formatting": "prettier --cache --check . \"!packages/**\" \"!tooling/**\"",
"check-monorepo": "manypkg check",
"prepare": "husky"
},
"engines": {
"node": ">= 18"
},
"packageManager": "pnpm@10.0.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@manypkg/cli": "^0.23.0",
"@steiger/eslint-config": "workspace:*",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"turbo": "^2.5.5"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.ts": "eslint --fix"
}
}