generated from Tinkoff/angular-open-source-starter
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
151 lines (151 loc) · 4.9 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
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "maskito",
"version": "3.2.0",
"description": "Collection of libraries to create an input mask which ensures that user types value according to predefined format",
"keywords": [
"mask",
"inputmask",
"input-mask",
"text-mask",
"input-formatting",
"javascript",
"typescript",
"angular"
],
"homepage": "https://maskito.dev",
"bugs": "https://github.com/taiga-family/maskito/issues",
"repository": {
"type": "git",
"url": "https://github.com/taiga-family/maskito.git"
},
"license": "Apache-2.0",
"author": {
"name": "Nikita Barsukov",
"email": "[email protected]",
"url": "https://github.com/nsbarsukov"
},
"contributors": [
"Alex Inkin <[email protected]> (https://twitter.com/waterplea)",
"Maksim Ivanov <[email protected]>",
"Vladimir Potekhin <[email protected]>",
"Nikita Barsukov <[email protected]>"
],
"workspaces": [
"projects/*"
],
"scripts": {
"prepare": "husky",
"*** Workflow ***": "",
"start": "nx run demo:serve",
"build": "nx run demo:build:production",
"test": "nx run-many --target test --all",
"*** Format ***": "",
"lint": "eslint .",
"cspell": "cspell --relative --dot --gitignore .",
"prettier": "prettier !package-lock.json . --ignore-path .gitignore",
"stylelint": "stylelint '**/*.{less,css}'",
"typecheck": "tsc --noEmit --skipLibCheck --incremental false --tsBuildInfoFile null --project tsconfig.spec.json",
"*** SSR ***": "",
"serve:dev:ssr": "nx run demo:serve-ssr",
"serve:ssr": "node dist/demo/server/main.js",
"serve:prerender": "http-server dist/demo/browser",
"build:ssr": "nx run demo:server:production",
"build:prerender": "nx run demo:prerender",
"*** Cypress ***": "",
"cy:open": "cypress open --project ./projects/demo-integrations/",
"cy:run": "nx e2e demo-integrations",
"release": "npx nx run-many --target publish --all",
"release:local": "npx release-it --no-git.push --'hooks.before:release=\"echo Skip publish\"'"
},
"commitlint": {
"extends": [
"@taiga-ui/commitlint-config"
]
},
"lint-staged": {
"*.{js,ts,html,md,less,json,svg,yml}": [
"npm run lint -- --fix",
"prettier --write"
],
"*.less": [
"stylelint --fix"
]
},
"prettier": "@taiga-ui/prettier-config",
"stylelint": {
"extends": [
"@taiga-ui/stylelint-config"
],
"ignoreFiles": [
"**/dist/**",
"**/coverage/**",
"**/node_modules/**"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.16",
"@angular-devkit/core": "16.2.16",
"@angular-devkit/schematics": "16.2.16",
"@angular/cli": "16.2.16",
"@angular/core": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@nx/angular": "20.1.2",
"@nx/eslint": "20.1.2",
"@nx/jest": "20.1.2",
"@nx/js": "20.1.2",
"@nx/react": "20.1.2",
"@nx/rollup": "20.1.2",
"@nx/workspace": "20.1.2",
"@taiga-ui/auto-changelog-config": "0.234.0",
"@taiga-ui/commitlint-config": "0.234.0",
"@taiga-ui/cspell-config": "0.234.0",
"@taiga-ui/eslint-plugin-experience": "0.234.0",
"@taiga-ui/prettier-config": "0.234.0",
"@taiga-ui/release-it-config": "0.234.0",
"@taiga-ui/stylelint-config": "0.234.0",
"@taiga-ui/syncer": "0.234.0",
"@taiga-ui/tsconfig": "0.234.0",
"@tinkoff/eslint-config": "4.1.3",
"@tinkoff/eslint-config-react": "4.1.3",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"http-server": "14.1.1",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-preset-angular": "14.3.0",
"lint-staged": "15.2.10",
"ng-packagr": "16.2.3",
"nx": "20.1.2",
"postcss-preset-env": "10.1.0",
"standard-version": "9.5.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsutils": "3.21.0",
"typescript": "5.0.4",
"webpack": "5.96.1",
"webpack-merge": "6.0.1"
},
"engines": {
"node": ">= 20",
"npm": ">= 10",
"yarn": "Please use npm instead of yarn to install dependencies"
},
"auto-changelog": {
"prepend": true,
"template": "templates/note.hbs"
},
"overrides": {
"highlight.js": "11.10.0"
},
"syncer": {
"includePaths": [
"./projects",
"./package-lock.json"
],
"matchPackageNames": [
"@maskito/*",
"maskito"
],
"ignorePackageNames": []
}
}