This repository has been archived by the owner on Oct 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.26 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
{
"name": "boilerplate-ngx-dashboard",
"version": "2.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4200 --open",
"build": "ng build",
"build:production": "ng build --prod --configuration=production",
"build:production-quick": "ng build --prod --configuration=production-quick",
"test": "ng test",
"lint": "./node_modules/.bin/prettier --write \"src/*/**/*{.ts,.json,.css,.scss,.html}\"",
"e2e": "ng e2e",
"postinstall": "rm -rf ./src/assets/tinymce && cp -r ./node_modules/tinymce ./src/assets"
},
"dependencies": {
"@angular/animations": "^7.2.8",
"@angular/cdk": "^7.3.3",
"@angular/common": "^7.2.8",
"@angular/compiler": "^7.2.8",
"@angular/core": "^7.2.8",
"@angular/elements": "^7.2.8",
"@angular/forms": "^7.2.8",
"@angular/http": "^7.2.8",
"@angular/platform-browser": "^7.2.8",
"@angular/platform-browser-dynamic": "^7.2.8",
"@angular/pwa": "^0.13.8",
"@angular/router": "^7.2.8",
"@angular/service-worker": "^7.2.8",
"@ng-bootstrap/ng-bootstrap": "^4.1.0",
"@ng-bootstrap/schematics": "^2.0.0-alpha.1",
"@ngx-meta/core": "^7.0.0",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"@schematics/angular": "^7.3.8",
"@tinymce/tinymce-angular": "^3.0.0",
"bootstrap": "^4.3.1",
"core-js": "^2.6.5",
"document-register-element": "^1.13.1",
"hammerjs": "^2.0.8",
"ng-zorro-antd": "^7.1.0",
"nl2br-pipe": "^1.1.0",
"rxjs": "^6.4.0",
"rxjs-compat": "^6.4.0",
"tinymce": "^4.9.11",
"zone.js": "^0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.13.8",
"@angular/cli": "^7.3.8",
"@angular/compiler-cli": "^7.2.8",
"@angular/language-service": "^7.2.8",
"@types/jasmine": "~3.3.9",
"@types/jasminewd2": "~2.0.6",
"@types/node": "~11.11.0",
"codelyzer": "~4.5.0",
"husky": "^1.3.1",
"jasmine-core": "~3.3.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.5",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"protractor": "^5.4.2",
"ts-node": "~8.0.3",
"tslint": "~5.13.1",
"typescript": "3.2.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}