-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "@internal/js-commons",
"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 '{apps,packages}/**!(node_modules)/package.json' 'package.json' --check",
"sort:fix": "sort-package-json '{apps,packages}/**!(node_modules)/package.json' 'package.json'"
},
"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": "workspace:^",
"@abinnovision/prettier-config": "workspace:^",
"@commitlint/cli": "^19.8.0",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"sort-package-json": "^2.15.1",
"turbo": "^2.4.4"
},
"packageManager": "[email protected]"
}