-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
139 lines (139 loc) · 5.01 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "sdk",
"version": "18.10.0",
"private": true,
"description": "Angular-RU SDK",
"homepage": "https://github.com/Angular-RU/angular-ru-sdk",
"bugs": "https://github.com/Angular-RU/angular-ru-sdk/issues",
"repository": "https://github.com/Angular-RU/angular-ru-sdk",
"license": "MIT",
"author": "[email protected]",
"workspaces": [
"libs/*"
],
"scripts": {
"postinstall": "npx husky install",
"prettier": "prettier !package-lock.json . --ignore-path .gitignore",
"lint": "eslint .",
"test": "jest ."
},
"commitlint": {
"extends": [
"@taiga-ui/commitlint-config"
]
},
"lint-staged": {
"*.ts": [
"npx prettier --write",
"npx eslint --fix --quiet --ignore-pattern '**/file-suites/**'"
],
"*.{html,css,scss,md,js,json}": [
"npx prettier --write"
]
},
"browserslist": [
"Chrome >= 61",
"Firefox >= 61",
"not IE 11",
"> 1%"
],
"prettier": "@taiga-ui/prettier-config",
"eslintConfig": {
"extends": [
"plugin:@taiga-ui/experience/all"
],
"rules": {
"eqeqeq": "off",
"new-cap": "off",
"no-alert": "off",
"no-loop-func": "off",
"no-loss-of-precision": "off",
"no-multi-assign": "off",
"no-new": "off",
"no-promise-executor-return": "off",
"no-restricted-globals": "off",
"no-restricted-imports": "off",
"no-restricted-syntax": "off",
"no-return-await": "off",
"no-unsafe-optional-chaining": "off",
"no-useless-concat": "off",
"no-useless-escape": "off",
"no-void": "off",
"prefer-regex-literals": "off",
"radix": "off",
"@angular-eslint/no-output-on-prefix": "off",
"@angular-eslint/sort-lifecycle-methods": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-duplicate-enum-value": "off",
"@typescript-eslint/no-duplicate-enum-values": "off",
"@typescript-eslint/no-extraneous-class": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/prefer-as-const": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"import/no-duplicates": "off",
"jest/no-conditional-expect": "off",
"promise/param-names": "off",
"rxjs/no-topromise": "off",
"rxjs/no-unsafe-first": "off",
"sonarjs/no-identical-functions": "off",
"sonarjs/prefer-single-boolean-return": "off",
"unicorn/prefer-string-slice": "off",
"@taiga-ui/experience/no-simple-for-of": "off"
},
"root": true
},
"devDependencies": {
"@angular-devkit/build-angular": "18.1.0",
"@angular/animations": "18.0.6",
"@angular/cdk": "18.0.6",
"@angular/cli": "18.0.7",
"@angular/common": "18.0.6",
"@angular/compiler": "18.0.6",
"@angular/compiler-cli": "18.0.6",
"@angular/core": "18.0.6",
"@angular/forms": "18.0.6",
"@angular/language-service": "18.0.6",
"@angular/material": "18.0.6",
"@angular/platform-browser": "18.0.6",
"@angular/platform-browser-dynamic": "18.0.6",
"@angular/router": "18.0.6",
"@ng-web-apis/universal": "4.1.2",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@ngxs/logger-plugin": "18.1.6",
"@nx/workspace": "19.4.1",
"@release-it-plugins/workspaces": "4.2.0",
"@release-it/conventional-changelog": "8.0.1",
"@taiga-ui/commitlint-config": "0.113.8",
"@taiga-ui/eslint-plugin-experience": "0.113.7",
"@taiga-ui/prettier-config": "0.113.5",
"@taiga-ui/tsconfig": "0.113.5",
"@types/jest": "29.5.12",
"@types/node": "20.14.10",
"class-transformer": "0.5.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-preset-angular": "14.1.1",
"lint-staged": "13.2.3",
"ng-packagr": "18.0.0",
"ngx-mask": "17.1.1",
"ngx-toastr": "19.0.0",
"nx": "19.4.1",
"prettier": "3.3.2",
"release-it": "17.4.1",
"rxjs": "7.8.1",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"tslib": "2.6.3",
"typescript": "5.4.5",
"zone.js": "0.14.7"
}
}