-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.57 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ng-morph",
"version": "5.0.1",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"libs/*"
],
"scripts": {
"affected": "nx affected",
"affected:apps": "nx affected:apps",
"affected:build": "nx affected:build",
"affected:dep-graph": "nx affected:dep-graph",
"affected:libs": "nx affected:libs",
"affected:lint": "nx affected:lint",
"affected:test": "nx affected:test",
"build": "nx run-many --target build --configuration production",
"build:demo": "nx build demo",
"postbuild:demo": "cp ./dist/apps/demo/browser/index.html ./dist/apps/demo/browser/404.html",
"cspell": "cspell --relative --no-progress --dot --gitignore .",
"dep-graph": "nx dep-graph",
"format": "nx format:write",
"format:check": "nx format:check",
"format:write": "nx format:write",
"help": "nx help",
"lint": "eslint .",
"ng": "ng",
"nx": "nx",
"prettier": "prettier !package-lock.json !CHANGELOG.md . --ignore-path .gitignore",
"release": "npx syncer && npx nx publish ng-morph",
"start": "nx run-many --target serve --all",
"stylelint": "stylelint '**/*.{less,css}' --config package.json",
"test": "nx run-many --target test",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator"
},
"commitlint": {
"extends": [
"@taiga-ui/commitlint-config"
]
},
"lint-staged": {
"*.less": [
"stylelint --fix"
],
"*.{js,ts,html}": [
"eslint --fix",
"prettier --write"
],
"*.{svg,yml,md,less,json}": [
"prettier --write"
]
},
"browserslist": [
"extends @taiga-ui/browserslist-config"
],
"prettier": "@taiga-ui/prettier-config",
"stylelint": {
"extends": [
"@taiga-ui/stylelint-config"
],
"ignoreFiles": [
"**/dist/**",
"**/coverage/**",
"**/node_modules/**"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "19.2.27",
"@angular-devkit/core": "19.2.27",
"@angular-devkit/schematics": "19.2.27",
"@angular/animations": "19.2.25",
"@angular/build": "19.2.27",
"@angular/cdk": "19.2.19",
"@angular/cli": "19.2.27",
"@angular/common": "19.2.25",
"@angular/compiler": "19.2.25",
"@angular/compiler-cli": "19.2.25",
"@angular/core": "19.2.25",
"@angular/forms": "19.2.25",
"@angular/platform-browser": "19.2.25",
"@angular/platform-browser-dynamic": "19.2.25",
"@angular/router": "19.2.25",
"@nx/jest": "22.7.6",
"@nx/workspace": "22.7.6",
"@schematics/angular": "19.2.27",
"@taiga-ui/addon-doc": "4.90.0",
"@taiga-ui/addon-mobile": "4.90.0",
"@taiga-ui/cdk": "4.90.0",
"@taiga-ui/configs": "0.551.0",
"@taiga-ui/core": "4.90.0",
"@taiga-ui/icons": "4.90.0",
"@taiga-ui/kit": "4.90.0",
"@types/node": "25.9.4",
"highlight.js": "11.11.1",
"less": "4.6.7",
"nx": "22.7.6",
"rxjs": "7.8.2",
"ts-node": "10.9.2",
"typescript": "5.8.3"
},
"release-it": {
"extends": "@taiga-ui/release-it-config"
},
"syncer": {
"includePaths": [
"./libs",
"./package-lock.json"
],
"matchPackageNames": [
"ng-morph"
]
}
}