-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.79 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.79 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
{
"name": "kirbydesign",
"version": "0.0.0",
"type": "module",
"private": true,
"engines": {
"node": "24",
"npm": "11"
},
"workspaces": [
"libs/core",
"libs/angular",
"libs/designsystem",
"libs/extensions/angular",
"apps/*",
"tools/*"
],
"homepage": "https://cookbook.kirby.design",
"scripts": {
"build": "nx run-many -t build",
"start": "nx dev designsystem",
"start:extensions": "nx dev extensions-angular",
"test:headless-browser": "nx run-many -t test --output-style=stream -- --browsers=ChromeCustom",
"test:headless-browser:single": "npm run test:headless-browser -- --watch=false",
"storybook": "nx storybook designsystem",
"build-storybook": "nx build-storybook designsystem",
"chromatic": "chromatic",
"publish": "node ./scripts/publish.js",
"postinstall": "npm run transpile:tools && npm run extract-scss-variables && npm run generate-design-tokens && npx nx build core && npm run transpile:generate-mocks && npm run generate-docs-import-map",
"sync-node-version": "node ./scripts/sync-node-version.js",
"transpile:tools": "tsc -b tools/sass-to-ts && tsc -b tools/docs-import-map",
"transpile:generate-mocks": "tsc -b tools/generate-mocks",
"extract-scss-variables": "node ./scripts/sass-extract-to-ts.js",
"generate-mocks": "node ./scripts/generate-mocks.js",
"generate-angular-proxies": "npx tsx tools/generate-proxies/generate-angular-proxies.ts",
"generate-design-tokens": "sass libs/core/src/scss/themes/design-tokens.scss libs/core/src/scss/themes/design-tokens.css --no-source-map",
"generate-docs-import-map": "nx build designsystem && node ./scripts/generate-docs-import-map.js",
"nx": "nx"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.2.0",
"@angular-devkit/core": "21.2.0",
"@angular-devkit/schematics": "21.2.0",
"@angular/animations": "21.2.0",
"@angular/build": "21.2.0",
"@angular/cdk": "21.2.0",
"@angular/cli": "21.2.0",
"@angular/common": "21.2.0",
"@angular/compiler": "21.2.0",
"@angular/compiler-cli": "21.2.0",
"@angular/core": "21.2.0",
"@angular/forms": "21.2.0",
"@angular/language-service": "21.2.0",
"@angular/platform-browser": "21.2.0",
"@angular/platform-browser-dynamic": "21.2.0",
"@angular/router": "21.2.0",
"@chromatic-com/storybook": "^5.0.0",
"@custom-elements-manifest/analyzer": "^0.10.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@nx/angular": "22.5.3",
"@nx/jest": "22.5.3",
"@nx/js": "22.5.3",
"@nx/storybook": "22.5.3",
"@nx/web": "22.5.3",
"@nx/workspace": "22.5.3",
"@storybook/addon-a11y": "10.2.13",
"@storybook/addon-docs": "10.2.13",
"@storybook/angular": "10.2.13",
"@swc-node/register": "^1.9.1",
"@swc/core": "^1.5.7",
"@swc/helpers": "^0.5.11",
"@types/node": "24.10.13",
"@types/webpack": "^4.41.7",
"@vitest/mocker": "^4.0.14",
"chromatic": "^11.0.8",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^2.6.11",
"eslint-plugin-storybook": "10.2.13",
"fs-extra": "^8.1.0",
"husky": "^3.0.9",
"is-ci": "^2.0.0",
"is-docker": "1.1.0",
"lint-staged": "^15.4.3",
"ng-packagr": "21.1.0",
"nx": "22.3.3",
"nx-stylelint": "^17.1.4",
"post-npm-install": "^2.0.0",
"prettier": "^3.3.3",
"sass": "^1.83.4",
"storybook": "10.2.13",
"stylelint": "^16.3.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "5.9.3",
"wait-on": "^7.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run sync-node-version && lint-staged",
"pre-push": "npm run test:headless-browser:single",
"post-merge": "post-npm-install"
}
}
}