-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.12 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@taiga-ui/toolkit",
"version": "0.420.0",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"projects/*"
],
"scripts": {
"after:bump": "npx nx build syncer && node projects/syncer/bin/src/index.js",
"cspell": "cspell --relative --dot --gitignore .",
"lint": "eslint .",
"prettier": "prettier !package-lock.json . --ignore-path .gitignore",
"release": "npx nx run-many --target publish --all",
"stylelint": "stylelint '**/*.{less,css}' --allow-empty-input --config package.json",
"test": "jest ."
},
"commitlint": {
"extends": [
"@taiga-ui/commitlint-config"
]
},
"lint-staged": {
"*.{js,ts,html,svg,yml,md,less,json}": [
"prettier --write",
"eslint --fix",
"cspell"
]
},
"browserslist": [
"extends @taiga-ui/browserslist-config"
],
"prettier": "@taiga-ui/prettier-config",
"stylelint": {
"extends": [
"@taiga-ui/stylelint-config"
],
"ignoreFiles": [
"**/demo/**",
"**/dist/**",
"**/coverage/**",
"**/node_modules/**"
]
},
"devDependencies": {
"@angular-devkit/core": "19.2.19",
"@angular/cdk": "19.2.19",
"@angular/cli": "19.2.18",
"@angular/common": "19.2.18",
"@angular/compiler": "19.2.18",
"@angular/compiler-cli": "19.2.18",
"@angular/core": "19.2.18",
"@angular/platform-browser-dynamic": "19.2.18",
"@nx/rollup": "22.5.1",
"@nx/workspace": "22.5.1",
"esbuild": "0.27.3",
"nx": "22.5.1",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"zone.js": "0.15.1"
},
"cspell": {
"import": [
"@taiga-ui/cspell-config/cspell.config.js"
],
"files": [
"*/*.*"
]
},
"syncer": {
"includePaths": [
"./projects",
"./package-lock.json"
],
"matchPackageNames": [
"@taiga-ui/*"
]
}
}