-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
58 lines (58 loc) · 1.92 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
{
"name": "angular-cc-library",
"version": "3.4.0",
"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": "^18.2.2",
"@angular/compiler": "^18.2.2",
"@angular/core": "^18.2.2",
"@angular/forms": "^18.2.2",
"@angular/platform-browser": "^18.2.2",
"@angular/platform-browser-dynamic": "^18.2.2",
"rxjs": "~7.8.1",
"tslib": "^2.7.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-builders/jest": "18.0.0",
"@angular-devkit/build-angular": "^18.2.2",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "^18.2.2",
"@angular/compiler-cli": "^18.2.2",
"@angular/language-service": "^18.2.2",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.3",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"eslint": "^8.56.0",
"husky": "^9.1.5",
"jest": "29.7.0",
"lint-staged": "^15.2.10",
"ng-packagr": "^18.2.1",
"release-it": "^17.6.0",
"ts-node": "~10.9.2",
"typescript": "~5.5.4"
},
"lint-staged": {
"*.{ts,component.html}": [
"eslint --fix"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}