-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
97 lines (97 loc) · 2.94 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
91
92
93
94
95
96
97
{
"name": "angular-ngrx-starter",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"test": "ng test",
"test:ci": "yarn run test --single-run --progress=false",
"cypress:open": "cypress open",
"cypress:ci": "cypress run",
"build:prod": "ng build --prod --e=prod --no-sourcemap --build-optimizer",
"lint:check": "ng lint --type-check",
"lint:fix": "yarn run lint:check --fix",
"check": "yarn run lint:check && yarn run prettier:check",
"check:fix": "yarn run lint:fix; yarn run prettier:fix",
"prettier:base-files": "yarn run prettier \"./{cypress,src}/**/*.{scss,ts}\"",
"prettier:fix": "yarn run prettier:base-files --write",
"prettier:check": "yarn run prettier:base-files -l",
"precommit": "lint-staged",
"prepush": "yarn run lint:check",
"postbuild": "gulp compress"
},
"lint-staged": {
"linters": {
"*.{ts,scss}": [
"yarn run prettier -l"
]
}
},
"private": true,
"dependencies": {
"@angular/animations": "5.2.5",
"@angular/cdk": "5.2.1",
"@angular/common": "5.2.5",
"@angular/compiler": "5.2.5",
"@angular/core": "5.2.5",
"@angular/flex-layout": "2.0.0-beta.10-4905443",
"@angular/forms": "5.2.5",
"@angular/http": "5.2.5",
"@angular/material": "5.2.1",
"@angular/platform-browser": "5.2.5",
"@angular/platform-browser-dynamic": "5.2.5",
"@angular/router": "5.2.5",
"@angular/service-worker": "5.2.5",
"@ngrx/core": "1.2.0",
"@ngrx/effects": "5.1.0",
"@ngrx/entity": "5.1.0",
"@ngrx/store": "5.1.0",
"@ngrx/store-devtools": "5.1.0",
"@ngx-translate/core": "9.1.1",
"@ngx-translate/http-loader": "2.0.1",
"core-js": "2.5.3",
"hammerjs": "2.0.8",
"material-design-icons-iconfont": "3.0.3",
"ngrx-store-freeze": "0.2.1",
"redux": "3.7.2",
"redux-batched-actions": "0.2.1",
"rxjs": "5.5.6",
"tslint-config-prettier": "1.8.0",
"tslint-language-service": "0.9.8",
"zone.js": "0.8.20"
},
"devDependencies": {
"@angular/cli": "1.7.0",
"@angular/compiler-cli": "5.2.5",
"@angular/language-service": "5.2.5",
"@bahmutov/add-typescript-to-cypress": "2.0.0",
"@types/jasmine": "2.8.6",
"@types/jasminewd2": "2.0.3",
"@types/node": "9.4.6",
"codelyzer": "4.1.0",
"cypress": "2.0.1",
"gulp": "3.9.1",
"gulp-gzip": "1.4.2",
"husky": "0.14.3",
"jasmine-core": "2.99.1",
"jasmine-spec-reporter": "4.2.1",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "1.4.1",
"karma-jasmine": "1.1.1",
"karma-jasmine-html-reporter": "0.2.2",
"karma-scss-preprocessor": "3.0.0",
"lint-staged": "6.1.1",
"prettier": "1.10.2",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"typescript": "2.7.2",
"wait-on": "2.1.0"
},
"resolutions": {
"@angular/core": "5.2.5",
"typescript": "2.7.2"
}
}