forked from gonzo12/simple-consumer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.94 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.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
{
"name": "simple-consumer",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test --code-coverage=true",
"test:headless": "ng test --code-coverage=true --browsers=ChromeHeadless_no_sandbox --watch=false",
"dist": "ng build --prod",
"lint": "ng lint",
"e2e": "ng e2e",
"test:docker_build": "docker build -t simple-consumer -f test-support/Dockerfile .",
"test:docker_run": "docker run --rm -i -v $(pwd):/usr/src/app simple-consumer npm run test:headless",
"test:github": "npm run test:docker_build && npm run test:docker_run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"e2e:ci": "start-server-and-test start http://localhost:4200 cy:run"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.2.14",
"@angular/common": "~11.2.14",
"@angular/compiler": "~11.2.14",
"@angular/core": "~11.2.14",
"@angular/forms": "~11.2.14",
"@angular/localize": "~11.2.14",
"@angular/platform-browser": "~11.2.14",
"@angular/platform-browser-dynamic": "~11.2.14",
"@angular/router": "~11.2.14",
"cypress-mochawesome-reporter": "^2.0.1",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.14",
"@angular/cli": "~11.2.14",
"@angular/compiler-cli": "~11.2.14",
"@briebug/cypress-schematic": "^5.0.0",
"@types/jasmine": "~3.6.11",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"cypress": "7.4.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"start-server-and-test": "^1.12.3",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.1.5"
}
}