-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.71 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
{
"name": "ng-journal-app",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"precommit": "lint-staged",
"prettier": "prettier --parser typescript --write '**/*.ts'",
"start": "ng serve",
"build": "ng build --prod",
"pwa": "ng build --prod && http-server dist/",
"deploy-prod": "ng build --prod && firebase deploy -P prod",
"deploy-staging": "ng build --configuration=staging && firebase deploy -P staging",
"build:stats": "ng build --prod --stats-json",
"analyze": "webpack-bundle-analyzer dist/stats.json",
"test": "ng test",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"e2e": "ng e2e",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^9.0.0",
"@angular/cdk": "^9.0.0",
"@angular/common": "^9.0.0",
"@angular/compiler": "^9.0.0",
"@angular/core": "^9.0.0",
"@angular/forms": "^9.0.0",
"@angular/http": "^7.2.16",
"@angular/material": "^9.0.0",
"@angular/platform-browser": "^9.0.0",
"@angular/platform-browser-dynamic": "^9.0.0",
"@angular/pwa": "^0.900.1",
"@angular/router": "^9.0.0",
"@angular/service-worker": "^9.0.0",
"@auth0/angular-jwt": "^4.0.0",
"@ngrx/effects": "^8.6.0",
"@ngrx/router-store": "^8.6.0",
"@ngrx/store": "^8.6.0",
"@ngrx/store-devtools": "^8.6.0",
"angular-froala-wysiwyg": "^3.1.0",
"angularfire2": "^5.4.2",
"bootstrap": "^4.4.1",
"core-js": "^3.6.4",
"firebase": "^7.8.1",
"jquery": "^3.3.1",
"ngrx": "0.0.1-security",
"popper.js": "^1.16.1",
"rxjs": "^6.5.4",
"rxjs-compat": "^6.5.4",
"tslib": "^1.10.0",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.900.1",
"@angular/cli": "^9.0.1",
"@angular/compiler-cli": "^9.0.0",
"@angular/language-service": "^9.0.0",
"@types/jasmine": "^3.5.3",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^13.7.0",
"codelyzer": "^5.2.1",
"husky": "4.2.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.0",
"karma-jasmine-html-reporter": "^1.5.2",
"lint-staged": "10.0.7",
"prettier": "^1.19.1",
"protractor": "^5.4.3",
"ts-node": "~8.6.2",
"tslint": "~6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.1.0",
"typescript": "~3.7.5",
"webpack-bundle-analyzer": "^3.6.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"git add"
]
}
}