-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "bobjan",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:background": "ng serve & $(npm bin)/wait-on -v http://localhost:4200",
"build": "ng build --prod",
"test": "jest",
"test:coveralls": "cat ./coverage/lcov.info | $(npm bin)/coveralls",
"test:watch": "jest --watch",
"test:cc": "jest --coverage",
"lint": "ng lint",
"cypress": "$(npm bin)/cypress open",
"cypress:run": "cypress run",
"cypress:ci": "ng build --prod && run-p --race start:ci cypress:run",
"start:ci": "$(npm bin)/http-server ./dist/bobjan -p 4200 -c-1"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.15",
"@angular/common": "~7.2.15",
"@angular/compiler": "~7.2.15",
"@angular/core": "~7.2.15",
"@angular/forms": "~7.2.15",
"@angular/platform-browser": "~7.2.15",
"@angular/platform-browser-dynamic": "~7.2.15",
"@angular/router": "~7.2.15",
"core-js": "~2.5.4",
"rxjs": "~6.5.1",
"tslib": "~1.9.3",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.9",
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "~7.2.15",
"@angular/language-service": "~7.2.15",
"@types/jest": "^24.0.12",
"@types/node": "~12.0.0",
"codelyzer": "~5.0.1",
"coveralls": "^3.0.3",
"cypress": "^3.2.0",
"http-server": "^0.11.1",
"jest": "^24.8.0",
"jest-preset-angular": "^7.1.0",
"netlify-cli": "^2.11.16",
"npm-run-all": "^4.1.5",
"transformation-matrix": "^2.0.0",
"ts-node": "~8.1.0",
"tslint": "~5.16.0",
"typescript": "~3.2.1"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/jest.conf.ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/cypress/"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"lcov"
]
}
}