-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
109 lines (109 loc) · 3.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
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
105
106
107
108
109
{
"name": "root",
"version": "0.0.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"ct": "git-cz",
"update-deps": "rm -rf node_modules && rm -rf npm_cache && npm i",
"verify-deps": "git diff --name-only | grep npm_cache/_cacache/content",
"start": "nx serve ng-dynamic-component",
"build": "nx build ng-dynamic-component",
"test": "nx test ng-dynamic-component",
"test:watch": "npm run test -- --watch",
"test:ci": "npm run test -- -i --coverage",
"lint": "nx lint ng-dynamic-component",
"e2e": "nx e2e ng-dynamic-component",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"prettier": "prettier \"**/*.{ts,js,json,?css,html}\"",
"pack": "copyfiles LICENSE README.md CODE_OF_CONDUCT.md CHANGELOG.md dist/ng-dynamic-component",
"semantic-release": "semantic-release",
"prepare": "husky install",
"postinstall": "ngcc --properties es2020 browser module main"
},
"dependencies": {
"@angular/common": "^14.1.3",
"@angular/compiler": "^14.1.3",
"@angular/core": "^14.1.3",
"@angular/platform-browser": "^14.1.3",
"@angular/platform-browser-dynamic": "^14.1.3",
"rxjs": "^7.5.6",
"tslib": "^2.4.0",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-builders/jest": "^14.0.1",
"@angular-devkit/build-angular": "^14.1.3",
"@angular-eslint/builder": "^14.0.3",
"@angular-eslint/eslint-plugin": "^14.0.3",
"@angular-eslint/eslint-plugin-template": "^14.0.3",
"@angular-eslint/schematics": "^14.0.3",
"@angular-eslint/template-parser": "^14.0.3",
"@angular/cli": "^14.1.3",
"@angular/compiler-cli": "^14.1.3",
"@angular/language-service": "^14.1.3",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@microsoft/api-extractor": "^7.34.0",
"@nrwl/angular": "^14.8.6",
"@nrwl/jest": "^14.8.6",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^28.1.1",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"core-js": "^3.23.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-plugin-deprecation": "^1.3.2",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-preset-angular": "^12.1.0",
"lint-staged": "^13.0.1",
"ng-packagr": "^14.0.2",
"npm-run-all": "^4.1.5",
"nx": "^15.6.2",
"prettier": "^2.7.0",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "~4.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
100
],
"footer-max-line-length": [
1,
"always",
100
]
}
},
"lint-staged": {
"**/*.{ts,js,json,?css,html}": [
"prettier --write"
]
}
}