-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.09 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.09 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "code-quality-tools",
"version": "1.0.0",
"description": "Monorepo aggregating various packages, generators, scripts and other goodies to make code look/work better",
"repository": {
"type": "git",
"url": "https://github.com/lmc-eu/code-quality-tools"
},
"author": "Tomáš Litera <[email protected]>",
"license": "BSD-3-Clause",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"packages:diff": "lerna diff",
"packages:changed": "lerna changed",
"packages:list": "lerna ls",
"packages:test": "lerna run test",
"test": "npm-run-all --serial lint packages:test format",
"commit:lint:test": "commitlint --from HEAD~1 --to HEAD --verbose",
"format": "yarn format:check",
"format:check": "prettier --check ./",
"format:fix": "prettier --write ./",
"format:fix:changelog": "prettier --write ./packages/**/CHANGELOG.md",
"lint": "npm-run-all --serial lint:es lint:text lint:md",
"lint:fix": "npm-run-all --serial lint:*:fix",
"lint:es": "eslint ./",
"lint:es:fix": "yarn lint:es --fix",
"lint:text": "textlint ./",
"lint:text:fix": "yarn lint:text --fix",
"lint:md": "remark ./ --quiet",
"version": "yarn format:fix:changelog",
"prepare": "is-ci || husky"
},
"devDependencies": {
"@alma-oss/prettier-config": "workspace:^",
"@almacareer/remark-config": "workspace:^",
"@commitlint/cli": "20.5.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "9.39.4",
"eslint-config-prettier": "9.1.2",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-prettier": "5.5.5",
"husky": "9.1.7",
"is-ci": "4.1.0",
"lerna": "9.0.7",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"pretty-quick": "4.2.2",
"remark-cli": "12.0.1",
"remark-preset-lint-consistent": "6.0.1",
"remark-preset-lint-markdown-style-guide": "6.0.1",
"remark-preset-lint-recommended": "7.0.1",
"textlint": "15.5.2"
},
"packageManager": "[email protected]"
}