-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.71 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.71 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
{
"name": "lyne-angular",
"version": "21.4.0",
"scripts": {
"postinstall": "yarn playwright install",
"ng": "ng",
"start": "tsx scripts/serve.mts",
"start:docs": "run-s compodoc:run 'ng serve docs'",
"build:angular": "ng build angular",
"postbuild:angular": "node ./scripts/patch-package-version.mts",
"build:angular-experimental": "ng build angular-experimental",
"postbuild:angular-experimental": "node ./scripts/patch-package-version.mts",
"build:docs": "run-s compodoc:run 'ng build docs'",
"postbuild:docs": "node ./scripts/patch-docs-version.mts",
"build:showcase": "ng build showcase",
"build": "yarn -s build:angular && yarn -s build:angular-experimental && yarn -s build:showcase && yarn -s build:docs",
"watch:angular": "ng build angular --watch --configuration development",
"watch:angular-experimental": "ng build angular-experimental --watch --configuration development",
"watch:showcase": "ng run showcase:storybook",
"test": "npm-run-all --sequential test:*",
"test:angular": "ng test angular",
"test:angular-experimental": "ng test angular-experimental",
"compodoc:run": "run-s compodoc:generate compodoc:api",
"compodoc:generate": "compodoc -p tsconfig.doc.json -e json -d src/docs --minimal --disablePrivate --disableProtected --disableInternal --disableSourceCode",
"compodoc:api": "tsx scripts/api-generator.mts",
"format": "prettier \"**/*\" --write --ignore-unknown",
"integrity": "yarn format",
"lint": "ng lint",
"lint fix": "ng lint --fix",
"prepare": "husky"
},
"private": true,
"type": "module",
"dependencies": {
"@angular-devkit/build-angular": "21.2.2",
"@angular/animations": "21.2.4",
"@angular/cdk": "21.2.2",
"@angular/common": "21.2.4",
"@angular/compiler": "21.2.4",
"@angular/core": "21.2.4",
"@angular/forms": "21.2.4",
"@angular/platform-browser": "21.2.4",
"@angular/platform-browser-dynamic": "21.2.4",
"@angular/router": "21.2.4",
"@sbb-esta/lyne-design-tokens": "2.0.0",
"@sbb-esta/lyne-elements": "4.7.0",
"@sbb-esta/lyne-elements-experimental": "4.7.0",
"@stackblitz/sdk": "1.11.0",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.16.0"
},
"devDependencies": {
"@angular/build": "21.2.2",
"@angular/cli": "21.2.2",
"@angular/compiler-cli": "21.2.4",
"@commitlint/cli": "20.4.4",
"@commitlint/config-conventional": "20.4.4",
"@compodoc/compodoc": "1.2.1",
"@eslint/js": "10.0.1",
"@storybook/addon-a11y": "10.2.19",
"@storybook/addon-actions": "9.0.8",
"@storybook/addon-docs": "10.2.19",
"@storybook/addon-essentials": "9.0.0-alpha.12",
"@storybook/addon-interactions": "9.0.0-alpha.10",
"@storybook/addon-links": "10.2.19",
"@storybook/angular": "10.2.19",
"@types/node": "24.12.0",
"@vitest/browser-playwright": "4.1.0",
"@vitest/coverage-v8": "4.1.0",
"angular-eslint": "21.3.0",
"custom-elements-manifest": "2.1.0",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import-x": "4.16.1",
"github-slugger": "2.0.0",
"globals": "17.4.0",
"highlight.js": "11.11.1",
"husky": "9.1.7",
"lint-staged": "16.3.3",
"ng-packagr": "21.2.0",
"marked": "17.0.4",
"marked-highlight": "2.2.3",
"npm-run-all2": "8.0.4",
"playwright": "1.58.2",
"prettier": "3.8.1",
"storybook": "10.2.19",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vitest": "4.1.0"
},
"prettier": {
"singleQuote": true,
"endOfLine": "lf",
"printWidth": 100
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --no-ignore"
],
"**/*": "prettier --write --ignore-unknown"
}
}