-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@internal/nestjs-commons",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter='./packages/*'",
"build:packages:watch": "turbo watch build --filter='./packages/*'",
"check": "yarn format:check && yarn sort:check && turbo run check",
"fix": "yarn format:fix && yarn sort:fix && turbo run fix",
"format:check": "prettier --ignore-path .gitignore --check '{.github/**/*,*}.{json,json5,yaml,yml,md}'",
"format:fix": "prettier --ignore-path .gitignore --write '{.github/**/*,*}.{json,json5,yaml,yml,md}'",
"postinstall": "husky",
"sort:check": "sort-package-json --check",
"sort:fix": "sort-package-json",
"test": "vitest run --coverage"
},
"commitlint": {
"extends": [
"@abinnovision/commitlint-config"
]
},
"lint-staged": {
"{.github/**/*,k8s/**/*,*}.{json,json5,yaml,yml,md}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"prettier": "@abinnovision/prettier-config",
"devDependencies": {
"@abinnovision/commitlint-config": "^2.2.1",
"@abinnovision/prettier-config": "^2.1.3",
"@commitlint/cli": "^19.7.1",
"@vitest/coverage-v8": "^3.0.5",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"sort-package-json": "^2.14.0",
"turbo": "^2.4.0",
"vitest": "^3.0.5"
},
"packageManager": "yarn@4.6.0"
}