-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "escalando-aplicaciones-con-angular",
"version": "0.12.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ngChile/escalando-aplicaciones-con-angular.git"
},
"scripts": {
"ng": "ng",
"start": "ng run web-app:serve-with-stubs",
"test": "ng test --watch --coverage",
"test:ci": "ng test --ci --reporters=default --reporters=jest-junit",
"e2e": "ng e2e",
"e2e:ci": "ng e2e --watch false",
"lint": "ng lint",
"build": "ng build",
"update-contributors": "all-contributors generate"
},
"jest-junit": {
"outputDirectory": "./test-results/junit",
"outputName": "results.xml"
},
"dependencies": {
"@angular/animations": "^14.2.9",
"@angular/cdk": "^14.0.0",
"@angular/common": "^14.2.9",
"@angular/compiler": "^14.2.9",
"@angular/core": "^14.2.9",
"@angular/forms": "^14.2.9",
"@angular/material": "^14.0.0",
"@angular/platform-browser": "^14.2.9",
"@angular/platform-browser-dynamic": "^14.2.9",
"@angular/router": "^14.2.9",
"core-js": "^3.4.0",
"hammerjs": "^2.0.8",
"rxjs": "~7.5.7",
"tslib": "^2.0.0",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^14.0.1",
"@angular-builders/jest": "^12.0.2",
"@angular-devkit/architect": "^0.1402.8",
"@angular-devkit/build-angular": "^14.2.8",
"@angular-devkit/core": "^14.2.8",
"@angular-devkit/schematics": "^14.2.8",
"@angular/cli": "^14.2.8",
"@angular/compiler-cli": "^14.2.9",
"@angular/language-service": "^14.2.9",
"@badeball/cypress-cucumber-preprocessor": "^13.0.3",
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.5",
"@cypress/schematic": "^2.3.0",
"@testing-library/angular": "^12.1.2",
"@types/jest": "^24.9.1",
"@types/node": "^12.11.1",
"all-contributors-cli": "^6.9.1",
"codelyzer": "^6.0.2",
"cypress": "^10.11.0",
"husky": "^3.0.4",
"jest": "^28.1.3",
"jest-junit": "^8.0.0",
"jest-preset-angular": "^12.2.2",
"ngx-devkit-stubby-builder": "^1.3.3",
"stubby": "^4.0.0",
"ts-node": "~8.4.1",
"tslint": "~6.1.0",
"typescript": "~4.6.4",
"yargs": "^14.2.0"
}
}