-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "taiga-linters",
"version": "0.251.0",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"projects/*"
],
"scripts": {
"stylelint": "stylelint '**/*.{less,css}' --allow-empty-input --config package.json",
"prettier": "prettier !package-lock.json . --ignore-path .gitignore",
"cspell": "cspell --relative --dot --gitignore .",
"lint": "eslint .",
"after:bump": "npx nx build syncer && node projects/syncer/bin/src/index.js",
"release": "npx nx run-many --target publish --all"
},
"commitlint": {
"extends": [
"@taiga-ui/commitlint-config"
]
},
"lint-staged": {
"*.less": [
"stylelint --fix"
],
"*.{js,ts,html,svg,yml,md,less,json}": [
"prettier --write",
"eslint --fix",
"cspell"
]
},
"prettier": "@taiga-ui/prettier-config",
"stylelint": {
"extends": [
"@taiga-ui/stylelint-config"
],
"ignoreFiles": [
"**/demo/**",
"**/dist/**",
"**/coverage/**",
"**/node_modules/**"
]
},
"devDependencies": {
"@nx/workspace": "20.4.2",
"eslint": "9.20.1",
"lint-staged": "15.4.3",
"nx": "20.4.2",
"typescript": "5.7.3"
},
"cspell": {
"import": [
"@taiga-ui/cspell-config/cspell.config.js"
],
"files": [
"*/*.*"
]
},
"syncer": {
"includePaths": [
"./projects",
"./package-lock.json"
],
"matchPackageNames": [
"@taiga-ui/*",
"taiga-linters"
],
"ignorePackageNames": []
}
}