-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.94 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.94 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
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
98
99
100
101
102
103
{
"name": "bbweb-ng",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "ng build",
"test": "jest",
"test:ci": "jest --runInBand",
"test:clearcache": "jest --clearCache",
"test:compile": "tsc --noEmit -p src/tsconfig.spec.json",
"test:cov": "jest --coverage",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"test:watch": "jest --watch",
"lint": "ng lint",
"e2e": "ng e2e",
"compodoc": "compodoc -p tsconfig.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.14",
"@angular/cdk": "^7.3.7",
"@angular/common": "^7.2.14",
"@angular/compiler": "^7.2.14",
"@angular/core": "^7.2.14",
"@angular/forms": "^7.2.14",
"@angular/http": "^7.2.14",
"@angular/material": "^7.3.7",
"@angular/platform-browser": "^7.2.14",
"@angular/platform-browser-dynamic": "^7.2.14",
"@angular/router": "^7.2.14",
"@fortawesome/angular-fontawesome": "^0.3.0",
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@ng-bootstrap/ng-bootstrap": "^4.1.1",
"@ngrx/effects": "^7.4.0",
"@ngrx/entity": "^7.4.0",
"@ngrx/store": "^7.4.0",
"@ngrx/store-devtools": "^7.4.0",
"@types/lodash.template": "^4.4.6",
"core-js": "^2.6.5",
"hammerjs": "^2.0.8",
"jasmine-marbles": "^0.5.0",
"jquery": "^3.4.0",
"lodash.template": "^4.4.0",
"lodash.templatesettings": "^4.1.0",
"ngx-toastr": "^10.0.2",
"rxjs": "^6.5.1",
"tslib": "^1.9.3",
"tslint-angular": "^1.1.2",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.13.8",
"@angular/cli": "^7.3.8",
"@angular/compiler-cli": "^7.2.14",
"@angular/language-service": "^7.2.14",
"@compodoc/compodoc": "^1.1.9",
"@ngrx/schematics": "^7.4.0",
"@types/faker": "^4.1.5",
"@types/jasmine": "^3.3.12",
"@types/jasminewd2": "~2.0.6",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.7",
"bootstrap": "^=4.3.1",
"codelyzer": "~5.0.0",
"coveralls": "^3.0.3",
"faker": "^4.1.0",
"jasmine-core": "^3.4.0",
"jest": "^24.7.1",
"jest-preset-angular": "^7.1.0",
"lodash.uniqueid": "^4.0.1",
"popper.js": "^1.15.0",
"protractor": "^5.4.2",
"puppeteer": "^1.14.0",
"ts-node": "~8.1.0",
"tslint": "~5.16.0",
"typescript": "^3.2.4"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setupJest.ts"
],
"moduleNameMapper": {
"@app/(.*)": "<rootDir>/src/app/$1",
"@env/(.*)": "<rootDir>/src/environments/$1",
"@test/(.*)": "<rootDir>/src/test/$1"
},
"collectCoverageFrom": [
"**/*.ts",
"!**/*.spec.ts",
"!**/test/**",
"!**/node_modules/**"
],
"coverageReporters": [
"json",
"html",
"lcov"
]
}
}