-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.58 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
{
"name": "mortgage-expense-calculator",
"version": "4.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "eslint \"src/**/*.ts\"",
"e2e": "ng e2e",
"build:prod": "ng build --configuration production --aot --build-optimizer",
"deploy:firebase": "firebase deploy",
"update": "ng update @angular/cli @angular/core",
"update:cli": "ng update @angular/cli",
"update:core": "ng update @angular/core",
"format": "prettier \"src/**/*.{ts,scss}\" --write",
"stylelint": "stylelint \"src/**/*.scss\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,scss}": [
"prettier --write"
],
"src/**/*.ts": [
"eslint --cache --fix"
],
"src/**/*.scss": [
"stylelint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ofcyln/mortgage-expense-calculator.git"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.10",
"@angular/cdk": "^15.2.9",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/flex-layout": "9.0.0-beta.31",
"@angular/forms": "^15.2.10",
"@angular/material": "^15.2.9",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"@angular/service-worker": "^15.2.10",
"@nicky-lenaers/ngx-scroll-to": "^9.0.0",
"jspdf": "^1.5.3",
"ngx-mask": "^9.1.4",
"rxjs": "~6.5.4",
"rxjs-tslint": "^0.1.8",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.10",
"@angular/cli": "^15.2.10",
"@angular/compiler-cli": "^15.2.10",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/jspdf": "^1.3.3",
"@types/node": "^12.19.9",
"@typescript-eslint/eslint-plugin": "latest",
"codelyzer": "^6.0.0",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"husky": "^4.3.6",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.4.0",
"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.3",
"prettier": "^2.2.1",
"prettier-eslint": "latest",
"protractor": "~7.0.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "latest"
}
}