forked from admin-ch/CovidCode-UI
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.84 KB
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
{
"name": "ha-ui",
"version": "1.0.1",
"scripts": {
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"format": "npm run lint -- --fix && node_modules/prettier/bin-prettier.js --write 'src/**/{*.ts,*.html}'"
},
"private": true,
"jestSonar": {
"reportPath": "./coverage/sonarQube",
"reportFile": "sqr.xml",
"indent": 4,
"sonar56x": true
},
"husky": {
"hooks": {
"commit-msg": "node scripts/hook.commit-rules",
"pre-push": "node scripts/hook.push-clean"
}
},
"dependencies": {
"@angular/animations": "~9.1.4",
"@angular/cdk": "~9.2.2",
"@angular/common": "~9.1.4",
"@angular/compiler": "~9.1.4",
"@angular/core": "~9.1.4",
"@angular/forms": "~9.1.4",
"@angular/localize": "^9.1.4",
"@angular/material": "~9.2.2",
"@angular/material-moment-adapter": "^9.2.2",
"@angular/platform-browser": "~9.1.4",
"@angular/platform-browser-dynamic": "~9.1.4",
"@angular/router": "~9.1.4",
"@ngx-translate/core": "^12.1.2",
"@oblique/oblique": "^5.0.5",
"angular-auth-oidc-client": "^11.2.0",
"moment": "^2.25.3",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-builders/jest": "^9.0.1",
"@angular-devkit/build-angular": "~0.901.4",
"@angular/cli": "~9.1.4",
"@angular/compiler-cli": "~9.1.4",
"@angular/language-service": "~9.1.4",
"@ts-morph/common": "^0.4.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"codelyzer": "^5.1.2",
"husky": "^4.2.5",
"jest": "^25.5.4",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.0.5",
"ts-morph": "^7.0.3",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "~3.8.3"
}
}