-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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
{
"name": "lyne-angular",
"version": "19.0.0-alpha.3",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:angular": "ng build angular",
"postbuild:angular": "node --experimental-strip-types ./scripts/patch-package-version.mts",
"build:angular-experimental": "ng build angular-experimental",
"postbuild:angular-experimental": "node --experimental-strip-types ./scripts/patch-package-version.mts",
"build:showcase": "ng build showcase",
"build": "yarn -s build:angular && yarn -s build:angular-experimental",
"watch": "ng build --watch --configuration development",
"test": "echo \"TODO\"",
"format": "prettier \"**/*\" --write --ignore-unknown",
"integrity": "yarn format",
"lint": "ng lint",
"prepare": "husky"
},
"private": true,
"type": "module",
"dependencies": {
"@angular/animations": "19.1.1",
"@angular/cdk": "19.1.0",
"@angular/common": "19.1.1",
"@angular/compiler": "19.1.1",
"@angular/core": "19.1.1",
"@angular/forms": "19.1.1",
"@angular/platform-browser": "19.1.1",
"@angular/platform-browser-dynamic": "19.1.1",
"@angular/router": "19.1.1",
"@sbb-esta/lyne-elements": "2.1.0",
"@sbb-esta/lyne-elements-experimental": "2.1.0",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.1.2",
"@angular/cli": "19.1.2",
"@angular/compiler-cli": "19.1.1",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@types/jasmine": "5.1.5",
"@types/node": "22.10.5",
"@web/test-runner": "0.19.0",
"@web/test-runner-commands": "0.9.0",
"@web/test-runner-playwright": "0.11.0",
"angular-eslint": "19.0.2",
"concurrently": "9.1.2",
"custom-elements-manifest": "2.1.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import-x": "4.6.1",
"globals": "15.14.0",
"husky": "9.1.7",
"jasmine-core": "5.5.0",
"lint-staged": "15.3.0",
"ng-packagr": "19.0.1",
"playwright": "1.49.1",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "8.18.1"
},
"prettier": {
"singleQuote": true,
"endOfLine": "lf",
"printWidth": 100
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --no-ignore"
],
"**/*": "prettier --write --ignore-unknown"
}
}