This repository has been archived by the owner on Jul 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
73 lines (73 loc) · 2.09 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
{
"name": "mat-video-app",
"version": "2.8.1",
"description": "",
"scripts": {
"ng": "ng",
"prettier": "prettier --write \"**/*.{scss,ts,component.html}\"",
"start": "ng serve mat-video-app",
"build": "ng build mat-video-app",
"build:lib": "ng build mat-video && copy README.md .\\dist\\mat-video\\README.md && copy CHANGELOG.md .\\dist\\mat-video\\CHANGELOG.md && copy LICENSE .\\dist\\mat-video\\LICENSE",
"test": "ng test mat-video --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"clean": "rm -rf dist"
},
"private": false,
"dependencies": {
"@angular/animations": "8.2.2",
"@angular/cdk": "8.1.3",
"@angular/common": "8.2.2",
"@angular/compiler": "8.2.2",
"@angular/core": "8.2.2",
"@angular/forms": "8.2.2",
"@angular/material": "8.1.3",
"@angular/platform-browser": "8.2.2",
"@angular/platform-browser-dynamic": "8.2.2",
"@angular/router": "8.2.2",
"@schuchard/prettier": "3.1.0",
"hammerjs": "2.0.8",
"rxjs": "6.5.2",
"tslib": "1.10.0",
"zone.js": "0.10.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.802.2",
"@angular-devkit/build-ng-packagr": "0.802.2",
"@angular/cli": "8.2.2",
"@angular/compiler-cli": "8.2.2",
"@angular/language-service": "8.2.2",
"@types/node": "12.7.2",
"@types/jasmine": "3.4.0",
"@types/jasminewd2": "2.0.6",
"codelyzer": "5.1.0",
"husky": "3.0.1",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.2.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "2.1.0",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"lint-staged": "9.2.1",
"ng-packagr": "5.4.3",
"prettier": "1.18.2",
"protractor": "5.4.2",
"ts-node": "8.3.0",
"tsickle": "0.36.0",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{scss,ts,component.html}": [
"prettier --write",
"git add"
]
}
}