-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
75 lines (74 loc) · 2.54 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
72
73
74
75
{
"name": "ang2-conduit",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod --base-href ./ && cp CNAME dist/CNAME",
"test": "ng test",
"lint": "ng lint --force",
"e2e": "ng e2e",
"delete:reports": "rm -r cypress/results/* || true",
"prereport": "npm run delete:reports",
"mochawesome:merge": "npx mochawesome-merge \"cypress/results/mochawesome/*.json\" > mochawesome.json && npx marge mochawesome.json",
"junit:merge": "npx junit-merge -d cypress/results/junit -o cypress/results/junit/result.xml",
"cypress:run": "npm run prereport && npx cypress run || exit 0",
"cypress:run_qa": "npx cypress run --env configFile=qa",
"cypress:e2e": "start-test start http-get://localhost:4200 cypress:run && npm run junit:merge && npm run mochawesome:merge",
"cy:open_dev": "npx cypress open --env [email protected],password=Welcome000",
"cy:open_process": "npx cypress open --env username=$DB_USERNAME,password=$PASSWORD"
},
"pre-commit": [
"lint"
],
"private": true,
"dependencies": {
"@angular/animations": "7.2.4",
"@angular/common": "7.2.4",
"@angular/compiler": "7.2.4",
"@angular/core": "7.2.4",
"@angular/forms": "7.2.4",
"@angular/platform-browser": "7.2.4",
"@angular/platform-browser-dynamic": "7.2.4",
"@angular/router": "7.2.4",
"core-js": "^2.4.1",
"marked": "^0.3.9",
"rxjs": "^6.4.0",
"tslib": "^1.9.0",
"zone.js": "^0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "^7.3.1",
"@angular/compiler-cli": "7.2.4",
"@angular/language-service": "7.2.4",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^9.4.0",
"codelyzer": "^4.5.0",
"cypress": "^10.11.0",
"cypress-multi-reporters": "^1.2.3",
"install": "^0.13.0",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"junit-merge": "^2.0.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"mocha": "^7.0.1",
"mocha-junit-reporter": "^1.23.3",
"mochawesome": "^4.1.0",
"mochawesome-merge": "^4.0.0",
"mochawesome-report-generator": "^4.1.0",
"pre-commit": "^1.2.2",
"protractor": "^5.4.2",
"start-server-and-test": "^1.10.7",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "3.2.4"
}
}