forked from taiga-family/taiga-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 6.04 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
{
"name": "@taiga-ui/components",
"version": "2.54.1",
"description": "Taiga UI by Tinkoff is a set of components, services, directives and other tools to build high quality UI using modern Angular framework",
"keywords": [
"angular",
"kit",
"ui",
"component-library",
"component",
"service",
"directive"
],
"homepage": "https://github.com/tinkoff/taiga-ui",
"repository": "https://github.com/tinkoff/taiga-ui",
"license": "Apache-2.0",
"maintainers": [
"Alex Inkin <[email protected]>",
"Roman Sedov <[email protected]>"
],
"workspaces": [
"projects/*"
],
"scripts": {
"postinstall": "husky install && ngcc --async",
"start": "nx serve",
"build:ssr": "nx build --prod && nx run demo:server:production",
"prerender": "nx run demo:prerender",
"i18n": "nx xi18n --output-path src/locale",
"*** Workflow ***": "",
"exec": "ts-node --project tsconfig.tools.json",
"stylelint": "stylelint '**/*.{less,css}'",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint",
"prettier": "prettier '**/*.{svg,yml,js,ts,html,md,less,json}' --cache node_modules/.cache/prettier",
"typecheck": "tsc --noEmit --skipLibCheck --incremental false --tsBuildInfoFile null --project tsconfig.spec.json",
"*** Build **": "",
"build:demo": "nx build --prod --configuration=production",
"build:demo:next": "nx build --prod --configuration=next",
"postbuild:demo": "npm run exec -- ./scripts/postbuild-demo.ts",
"postbuild:demo:next": "npm run exec -- ./scripts/postbuild-demo.ts",
"*** Release ***": "",
"release": "standard-version -a --no-verify",
"release:patch": "npm run exec -- ./scripts/release.ts --release-as patch",
"release:minor": "npm run exec -- ./scripts/release.ts --release-as minor",
"release:major": "npm run exec -- ./scripts/release.ts --release-as major",
"*** Cypress ***": "",
"cypress:open": "cypress open --browser chrome --project ./projects/demo-integrations",
"cypress:open:demo:next": "cypress open --browser chrome --project ./projects/demo-integrations --config baseUrl=\"https://taiga-ui.dev/next\"",
"cy2:run:localhost": "cy2 run --parallel --record --key localhost --ci-build-id localhost --env ci=true --browser chrome --headless --project ./projects/demo-integrations",
"cy2:run:demo:next": "cy2 run --parallel --record --key next --ci-build-id next --env ci=true --browser chrome --headless --project ./projects/demo-integrations",
"*** CI ***": "",
"concurrently": "concurrently --success all --group --timings",
"affected:test:libs": "nx affected --target test --parallel --exclude=demo",
"affected:build:libs": "nx affected --target build --parallel --exclude=demo",
"run-many:test:libs": "nx run-many --target test --all --parallel --exclude=demo",
"run-many:build:libs": "nx run-many --target build --parallel --all --exclude=demo",
"run-many:publish:libs": "nx run-many --target publish --all"
},
"lint-staged": {
"*.{js,ts,html,md,less,json}": [
"npm run lint -- --fix",
"prettier --write",
"git add"
],
"*.less": [
"stylelint --fix",
"git add"
]
},
"dependencies": {
"@angular/animations": "~9.1.12",
"@angular/cdk": "~9.2.4",
"@angular/common": "~9.1.12",
"@angular/compiler": "~9.1.12",
"@angular/core": "~9.1.12",
"@angular/forms": "~9.1.12",
"@angular/localize": "^9.1.12",
"@angular/platform-browser": "~9.1.12",
"@angular/platform-browser-dynamic": "~9.1.12",
"@angular/platform-server": "^9.1.12",
"@angular/router": "~9.1.12",
"core-js": "^2.6.9",
"parse5": "^6.0.1",
"rxjs": "~6.6.3",
"tslib": "^2.4.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.12",
"@angular-devkit/build-ng-packagr": "~0.901.12",
"@angular/cli": "~9.1.12",
"@angular/compiler-cli": "~9.1.12",
"@angular/language-service": "~9.1.12",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@nrwl/cli": "14.3.1",
"@nrwl/eslint-plugin-nx": "14.3.1",
"@nrwl/node": "14.3.1",
"@nrwl/tao": "14.3.1",
"@nrwl/workspace": "14.3.1",
"@nx-cloud/runners": "1.1.0",
"@tinkoff/eslint-config": "^1.36.1",
"@tinkoff/eslint-config-angular": "^1.36.1",
"@tinkoff/prettier-config": "^1.32.1",
"@tinkoff/stylelint-config": "^1.30.0",
"@types/node": "^17.0.42",
"@types/parse5": "^6.0.3",
"@types/webpack-env": "^1.17.0",
"angular-http-server": "^1.10.0",
"concurrently": "^7.2.1",
"cy2": "~2.0.0",
"cypress": "~10.0.3",
"eslint-plugin-decorator-position": "~5.0.1",
"eslint-plugin-unicorn": "^40.1.0",
"find-in-files": "~0.5.0",
"firebase-tools": "^9.23.3",
"http-server": "^0.13.0",
"husky": "^8.0.1",
"kill-port": "^2.0.0",
"lint-staged": "^8.2.1",
"ng-packagr": "^9.1.5",
"postcss": "^8.4.14",
"prettier": "~2.7.1",
"raw-loader": "^4.0.2",
"rollup": "~2.75.6",
"standard-version": "^8.0.2",
"ts-loader": "^6.2.2",
"ts-node": "~10.8.1",
"typescript": "~3.8.3",
"wait-on": "^6.0.1"
},
"engines": {
"node": ">= 14",
"npm": ">= 7",
"yarn": "Please use npm instead of yarn to install dependencies"
},
"authors": [
"Alex Inkin <[email protected]>",
"Roman Sedov <[email protected]>"
],
"standard-version": {
"scripts": {
"postchangelog": "npm run exec -- ./scripts/postchangelog.ts",
"postbump": "npm run exec -- ./scripts/postbump.ts"
}
}
}