forked from MrCube42/cypress-e2e-testing-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "cypress-e2e-testing-angular",
"version": "0.0.0",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"lint:format": "prettier -l \"src/**/*.{ts,scss,html}\"",
"format": "prettier --write \"src/**/*.{ts,scss,html}\"",
"e2e": "ng e2e",
"e2e:ci": "start-server-and-test start http://localhost:4200 cy:run"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.0.2",
"@angular/common": "~11.0.2",
"@angular/compiler": "~11.0.2",
"@angular/core": "~11.0.2",
"@angular/forms": "~11.0.2",
"@angular/platform-browser": "~11.0.2",
"@angular/platform-browser-dynamic": "~11.0.2",
"@angular/router": "~11.0.2",
"@briebug/cypress-schematic": "^3.3.0",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.2",
"@angular/cli": "~11.0.2",
"@angular/compiler-cli": "~11.0.2",
"@angular/language-service": "~11.0.2",
"@cypress/webpack-preprocessor": "4.1.3",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"cypress": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"prettier": "^1.19.1",
"start-server-and-test": "^1.10.11",
"ts-loader": "6.2.2",
"ts-node": "~8.3.0",
"typescript": "~4.0.5"
}
}