-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2 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
{
"name": "angular-cc-library",
"version": "3.5.1",
"scripts": {
"run:demo": "ng serve example",
"build:demo": "ng build example --configuration production",
"build:library": "ng build angular-cc-library --configuration production ",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"deploy": "yarn build:library && cd ./dist/angular-cc-library && npm publish",
"precommit": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@angular/common": "^20.3.13",
"@angular/compiler": "^20.3.13",
"@angular/core": "^20.3.13",
"@angular/forms": "^20.3.13",
"@angular/platform-browser": "^20.3.13",
"@angular/platform-browser-dynamic": "^20.3.13",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-builders/jest": "20.0.0",
"@angular-devkit/build-angular": "^20.3.11",
"@angular-eslint/builder": "20.6.0",
"@angular-eslint/eslint-plugin": "20.6.0",
"@angular-eslint/eslint-plugin-template": "20.6.0",
"@angular-eslint/schematics": "20.6.0",
"@angular-eslint/template-parser": "20.6.0",
"@angular/cli": "^20.3.11",
"@angular/compiler-cli": "^20.3.13",
"@angular/language-service": "^20.3.13",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "29.7.0",
"lint-staged": "^15.4.3",
"ng-packagr": "^20.3.2",
"release-it": "^17.11.0",
"ts-node": "~10.9.2",
"typescript": "~5.9.3"
},
"lint-staged": {
"*.{ts,component.html}": [
"eslint --fix"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7"
}