-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
97 lines (97 loc) · 2.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
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
{
"name": "ngx-component-outlet-app",
"version": "16.0.0",
"private": true,
"license": "MIT",
"scripts": {
"commit": "git-cz",
"ng": "ng",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"start": "ng serve",
"start:prod": "node --max-old-space-size=4096 ./node_modules/.bin/ng serve --prod",
"build": "ng build --prod",
"build:core": "ng build core --configuration production",
"build:forms": "ng build forms --configuration production",
"build:core:watch": "ng build core --watch",
"build:forms:watch": "ng build forms --watch",
"test": "ng test",
"test:core": "ng test core",
"test:forms": "ng test forms",
"lint": "ng lint",
"lint:core": "ng lint core",
"format": "npm run lint -- --fix",
"format:core": "npm run lint:core -- --fix",
"hooks:install": "node node_modules/husky/husky.js install",
"hooks:uninstall": "node node_modules/husky/husky.js uninstall",
"e2e": "ng e2e"
},
"dependencies": {
"@angular/animations": "16.0.2",
"@angular/cdk": "16.0.1",
"@angular/common": "16.0.2",
"@angular/compiler": "16.0.2",
"@angular/core": "16.0.2",
"@angular/flex-layout": "15.0.0-beta.42",
"@angular/forms": "16.0.2",
"@angular/material": "16.0.1",
"@angular/platform-browser": "16.0.2",
"@angular/platform-browser-dynamic": "16.0.2",
"@angular/router": "16.0.2",
"core-js": "2.6.12",
"rxjs": "7.4.0",
"zone.js": "0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.0.2",
"@angular/cli": "16.0.2",
"@angular/compiler-cli": "16.0.2",
"@angular/language-service": "16.0.2",
"@angular-eslint/builder": "16.0.2",
"@angular-eslint/eslint-plugin": "16.0.2",
"@angular-eslint/eslint-plugin-template": "16.0.2",
"@angular-eslint/template-parser": "16.0.2",
"@types/jasmine": "2.8.17",
"@types/jasminewd2": "2.0.9",
"@types/node": "12.12.27",
"codelyzer": "^0.0.28",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "2.1.1",
"cz-customizable": "6.3.0",
"hammerjs": "2.0.8",
"husky": "6.0.0",
"jasmine-core": "3.7.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.6.0",
"lint-staged": "11.0.0",
"ng-packagr": "16.0.1",
"prettier": "1.16.4",
"protractor": "7.0.0",
"ts-node": "10.0.0",
"tslib": "2.3.1",
"eslint": "8.41.0",
"typescript": "5.0.4",
"webpack-bundle-analyzer": "^4.8.0",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}