-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
50
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@internal/cross-policy",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"check": "concurrently 'yarn:format:check' 'turbo check'",
"clean": "rimraf packages/*/dist",
"fix": "concurrently 'yarn:format:fix' 'turbo fix'",
"format:check": "prettier --check '{*,.github/**/*}.{md,json,json5,yaml,yml}'",
"format:fix": "prettier --write '{*,.github/**/*}.{md,json,json5,yaml,yml}'",
"postinstall": "husky install",
"sort:check": "sort-package-json '{packages}/**!(node_modules)/package.json' 'package.json' --check",
"sort:fix": "sort-package-json '{packages}/**!(node_modules)/package.json' 'package.json'",
"test-integration": "vitest --run --coverage --project \\*#integration",
"test-unit": "vitest --run --coverage --project \\*#unit"
},
"commitlint": {
"extends": [
"@abinnovision/commitlint-config"
]
},
"lint-staged": {
"{*,.github/**/*}.{md,json,json5,yaml,yml}": [
"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": "^2.1.8",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"rimraf": "^6.0.1",
"sort-package-json": "^2.14.0",
"turbo": "^2.4.2",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}