forked from kirbydesign/designsystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
219 lines (219 loc) · 8.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
{
"name": "designsystem",
"version": "7.4.0",
"description": "Kirby Design Angular Components. This library provides Angular wrappers for the @kirbydesign/core package, for smoother integration into Angular projects.",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kirbydesign/designsystem.git"
},
"keywords": [
"Angular",
"Angular2",
"Library",
"Kirby"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/kirbydesign/designsystem/issues"
},
"homepage": "https://cookbook.kirby.design",
"scripts": {
"ng": "nx",
"nx": "nx",
"start": "npm-run-all --parallel \"ng serve cookbook\" \"build:core:watch\"",
"start:flows": "ng serve flows",
"start:flows:ios": "npm run build:flows && npx cap run ios",
"start:flows:android": "npm run build:flows && npx cap run android",
"build": "ng build designsystem",
"build-polyfills": "webpack --config webpack.polyfills.config.js",
"test": "ng test designsystem",
"test:headless-browser": "npm run test -- --browsers=ChromeCustom",
"test:headless-browser:single": "npm run test:headless-browser -- --watch=false",
"test:libs": "npm run test:core:single && npm run test:headless-browser:single",
"ci-test": "npm run test:ci",
"test:ci": "npm run test:core:single && ng test designsystem --progress false --watch false --code-coverage",
"lint": "npm run lint:cookbook && npm run lint:designsystem && npm run lint:flows",
"lint:cookbook": "npm run lint:cookbook:ts && npm run lint:cookbook:css",
"lint:cookbook:ts": "eslint './apps/cookbook/src/**/*.ts'",
"lint:cookbook:ts:fix": "npm run lint:cookbook:ts -- --fix",
"lint:cookbook:css": "stylelint './apps/cookbook/src/**/*.scss'",
"lint:cookbook:css:fix": "npm run lint:cookbook:css -- --fix",
"lint:designsystem": "npm run lint:designsystem:ts && npm run lint:designsystem:css",
"lint:designsystem:ts": "eslint './libs/designsystem/**/*.ts'",
"lint:designsystem:ts:fix": "npm run lint:designsystem:ts -- --fix",
"lint:designsystem:css": "stylelint './libs/designsystem/src/**/*.scss'",
"lint:designsystem:css:fix": "npm run lint:designsystem:css -- --fix",
"lint:flows": "npm run lint:flows:ts && npm run lint:cookbook:css",
"lint:flows:ts": "eslint './apps/flows/src/**/*.ts'",
"lint:flows:ts:fix": "npm run lint:flows:ts -- --fix",
"lint:flows:css": "stylelint './apps/flows/src/**/*.scss'",
"lint:flows:css:fix": "npm run lint:flows:css -- --fix",
"prettier": "prettier --check \"./{libs,apps}/**/*.{ts,json,md,scss,html}\"",
"prettier:fix": "prettier --write \"./{libs,apps}/**/*.{ts,json,md,scss,html}\"",
"dist": "npm run dist:cookbook",
"dist:cookbook": "ng build cookbook --configuration production",
"predist:designsystem": "npm run extract-scss-variables",
"dist:designsystem": "ng build designsystem",
"postinstall": "npm run ngcc && npm run build-polyfills && npm run transpile:tools && npm run extract-scss-variables && npm run build:core && npm run transpile:generate-mocks && node ./decorate-angular-cli.js",
"coverage-report": "cat ./coverage/lcov.info | coveralls",
"transpile:tools": "tsc -b tools/sass-to-ts",
"transpile:generate-mocks": "tsc -b tools/generate-mocks",
"extract-scss-variables": "node ./scripts/sass-extract-to-ts.js",
"generate-mocks": "npm run build:core && node ./scripts/generate-mocks.js",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"ngcc": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"publish": "node ./scripts/publish.js",
"build:core": "stencil build --config=./libs/core/stencil.config.ts",
"build:core:watch": "npm run build:core -- --watch",
"dist:core": "npm run build:core -- --docs",
"start:core": "npm run build:core -- --dev --watch --serve",
"test:core": "stencil test --config=./libs/core/stencil.config.ts --spec --watchAll",
"test:core:single": "stencil test --config=./libs/core/stencil.config.ts --spec",
"workspace-generator": "nx workspace-generator",
"sync-node-version": "node ./scripts/sync-node-version.js",
"start:flows:prod": "ng serve flows --configuration production",
"build:flows": "ng build flows",
"build:flows:prod": "npm run build:flows -- --configuration production",
"build:flows:prod:stats": "npm run build:flows:prod -- --stats-json && npm run copy-bundle-stats",
"analyze:flows:bundle": "npx webpack-bundle-analyzer ./measures/stats.json",
"copy-bundle-stats": "copyfiles -f ./dist/apps/user-flows/stats.json measures"
},
"private": true,
"dependencies": {
"@angular/animations": "15.0.2",
"@angular/cdk": "15.0.1",
"@angular/common": "15.0.2",
"@angular/compiler": "15.0.2",
"@angular/core": "15.0.2",
"@angular/forms": "15.0.2",
"@angular/platform-browser": "15.0.2",
"@angular/platform-browser-dynamic": "15.0.2",
"@angular/router": "15.0.2",
"@fontsource/roboto": "4.2.1",
"@ionic/angular": "6.2.1",
"@nrwl/angular": "15.3.0",
"@types/prismjs": "1.9.0",
"chart.js": "3.9.1",
"chartjs-adapter-date-fns": "^2.0.0",
"chartjs-plugin-annotation": "^1.0.2",
"chartjs-plugin-datalabels": "^2.0.0",
"date-fns": "2.21.1",
"date-fns-tz": "1.1.4",
"highcharts": "8.0.4",
"inputmask": "^5.0.5",
"prismjs": "1.27.0",
"reflect-metadata": "0.1.8",
"rxjs": "~7.5.0",
"tslib": "^2.0.3",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-builders/custom-webpack": "15.0.0-beta.0",
"@angular-devkit/build-angular": "15.0.2",
"@angular-devkit/core": "15.0.2",
"@angular-eslint/eslint-plugin": "15.0.0",
"@angular-eslint/eslint-plugin-template": "15.0.0",
"@angular-eslint/template-parser": "15.0.0",
"@angular/cli": "~15.0.0",
"@angular/compiler-cli": "15.0.2",
"@angular/language-service": "15.0.2",
"@babel/core": "^7.14.6",
"@capacitor/android": "^4.4.0",
"@capacitor/angular": "^2.0.3",
"@capacitor/cli": "^4.4.0",
"@capacitor/core": "^4.4.0",
"@capacitor/ios": "^4.4.0",
"@kirbydesign/core": "file:libs/core",
"@ngneat/spectator": "^10.0.1",
"@nrwl/cli": "15.3.0",
"@nrwl/eslint-plugin-nx": "15.3.0",
"@nrwl/linter": "15.3.0",
"@nrwl/nx-cloud": "^15.0.2",
"@nrwl/workspace": "15.3.0",
"@push-based/user-flow": "^0.8.0",
"@stencil/angular-output-target": "0.0.6",
"@stencil/core": "^2.14.2",
"@stencil/sass": "^2.0.0",
"@types/estree": "^0.0.47",
"@types/jasmine": "4.0.3",
"@types/jest": "^27.5.1",
"@types/node": "14.14.33",
"@types/webpack": "^4.41.7",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"chokidar": "^3.3.1",
"copy-webpack-plugin": "^11.0.0",
"copyfiles": "^2.4.1",
"core-js": "^2.6.11",
"coveralls": "3.0.2",
"eslint": "8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^8.1.0",
"husky": "^3.0.9",
"intersection-observer": "0.7.0",
"is-ci": "^2.0.0",
"is-docker": "1.1.0",
"jasmine-core": "4.2.0",
"jasmine-spec-reporter": "7.0.0",
"jest": "^27.4.5",
"jest-cli": "^27.4.5",
"jest-config": "^27.4.5",
"jest-environment-jsdom": "^27.5.1",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"karma-junit-reporter": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"lint-staged": "^9.4.2",
"multimatch": "^4.0.0",
"ng-mocks": "^14.4.0",
"ng-packagr": "15.0.1",
"npm-run-all": "^4.1.5",
"nx": "15.3.0",
"post-npm-install": "^2.0.0",
"postcss": "^8.4.12",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "2.7.1",
"resize-observer-polyfill": "1.5.1",
"sass": "^1.55.0",
"stylelint": "^14.6.1",
"stylelint-config-prettier-scss": "0.0.1",
"stylelint-config-standard-scss": "^3.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.9.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run sync-node-version && npm run generate-mocks && lint-staged",
"pre-push": "npm run test:libs",
"post-merge": "post-npm-install"
}
}
}