-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.38 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.38 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
{
"name": "sc-ng-commons-public",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "shiftcode GmbH <team@shiftcode.ch>",
"type": "module",
"scripts": {
"build:ci": "ng build core && ng build components",
"build:styleguide": "ng build styleguide",
"copy-version": "lerna exec --ignore @shiftcode/styleguide --stream -- node \\$LERNA_ROOT_PATH/scripts/copy-version.ts",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"lint": "lerna exec --stream -- npx eslint --fix --cache .",
"lint:ci": "lerna exec --stream -- npx eslint --cache .",
"prepare": "husky",
"prepublishOnly": "lerna exec --ignore @shiftcode/styleguide --stream -- node \\$LERNA_ROOT_PATH/scripts/copy-version.ts",
"start": "ng serve",
"test": "ng test",
"test:ci": "ng test --no-watch",
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/animations": "~21.0.9",
"@angular/cdk": "~21.0.6",
"@angular/common": "~21.0.9",
"@angular/core": "~21.0.9",
"@angular/forms": "~21.0.9",
"@angular/platform-browser": "~21.0.9",
"@angular/router": "~21.0.9",
"@angular/ssr": "~21.0.6",
"@shiftcode/logger": "^5.0.0",
"@shiftcode/utilities": "^5.0.0",
"rxjs": "^6.5.3 || ^7.4.0",
"tslib": "^2.5.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "~21.0.6",
"@angular/cli": "~21.0.6",
"@angular/compiler": "~21.0.9",
"@angular/compiler-cli": "~21.0.9",
"@angular/platform-browser-dynamic": "~21.0.9",
"@angular/platform-server": "~21.0.9",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@commitlint/prompt-cli": "^19.3.1",
"@shiftcode/branch-utilities": "^6.0.0",
"@shiftcode/eslint-config-recommended": "^7.0.0",
"@shiftcode/publish-helper": "^6.0.0",
"@types/node": "^24.12.0",
"angular-eslint": "^21.0.1",
"eslint": "^9.39.1",
"husky": "^9.0.11",
"jsdom": "^28.0.0",
"lerna": "^9.0.3",
"lint-staged": "^16.2.7",
"ng-packagr": "^21.0.0",
"prettier": "^3.8.1",
"reset-css": "^5.0.2",
"sort-package-json": "^2.10.0",
"tslib": "^2.5.0",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "^19.4.2",
"@rollup/rollup-linux-x64-gnu": "^4.20.0"
},
"engines": {
"node": "^24.0.0"
}
}