-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.64 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
{
"name": "@ladesa-ro/api",
"version": "1.0.0-next.29",
"private": true,
"scripts": {
"commit": "git-cz",
"prepare": "husky",
"build": "nx run-many -t build --exclude @ladesa-ro/api",
"start:dev": "pnpm run --filter @ladesa-ro/api.service start:dev",
"lint:check": "biome lint --no-errors-on-unmatched",
"lint:fix": "biome lint --write --no-errors-on-unmatched",
"format:check": "biome format --no-errors-on-unmatched",
"format:fix": "biome format --write --no-errors-on-unmatched",
"code-static:check": "biome check --no-errors-on-unmatched",
"code-static:fix": "biome check --write --no-errors-on-unmatched",
"changeset:add": "changeset add",
"changeset:tag": "changeset tag",
"changeset:version": "changeset version",
"chore:update": "corepack use pnpm@latest && pnpm --filter=@ladesa-ro/api.service exec corepack use pnpm@latest && pnpm -r update"
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"lint-staged": {
"**/*": "pnpm run code-static:fix"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"devDependencies": {
"nx": "20.0.8"
}
}