-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.82 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
{
"name": "covid-statistics",
"version": "0.6.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:browser": "ng serve --open",
"start:local-network": "ng serve --host 0.0.0.0",
"build": "ng build",
"build:production": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"svg:icons": "svg2sprite ./src/assets/svg/icons ./src/assets/svg/sprites/icons.svg --stripAttrs id --stripAttrs width --stripAttrs height",
"prettier": "prettier --check \"src/**/*.(ts|component.html)\"",
"prettier:fix": "prettier --write \"src/**/*.(ts|component.html)\"",
"compodoc": "compodoc",
"compodoc:serve": "compodoc -s -o",
"i18n:extract": "transloco-keys-manager extract",
"i18n:find": "transloco-keys-manager find",
"i18n:find:missing-keys": "transloco-keys-manager find --add-missing-keys"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --relative"
}
},
"lint-staged": {
"*.(ts|component.html)": [
"prettier --write",
"git add"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^14.0.1",
"@angular/common": "^14.0.1",
"@angular/compiler": "^14.0.1",
"@angular/core": "^14.0.1",
"@angular/forms": "^14.0.1",
"@angular/platform-browser": "^14.0.1",
"@angular/platform-browser-dynamic": "^14.0.1",
"@angular/router": "^14.0.1",
"@ngneat/transloco": "^2.23.5",
"@vakhramoff/angular-utils": "14.0.2",
"ng-svg-icon-sprite": "^1.11.0",
"rxjs": "~6.5.4",
"tslib": "^2.0.3",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.1",
"@angular-eslint/builder": "^13.4.0",
"@angular-eslint/eslint-plugin": "^13.4.0",
"@angular-eslint/eslint-plugin-template": "^13.4.0",
"@angular-eslint/schematics": "^13.4.0",
"@angular-eslint/template-parser": "^13.4.0",
"@angular/cli": "^14.0.1",
"@angular/compiler-cli": "^14.0.1",
"@angular/language-service": "^14.0.1",
"@compodoc/compodoc": "^1.1.11",
"@ngneat/transloco-keys-manager": "^1.3.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"eslint": "^8.17.0",
"husky": "^4.3.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.5.1",
"ngx-build-plus": "^12.2.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^1.1.1",
"protractor": "~7.0.0",
"svg2sprite-cli": "^2.0.1",
"ts-node": "~8.3.0",
"typescript": "~4.7.3"
}
}