-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.66 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
{
"name": "Opensource",
"version": "1.0.0",
"private": true,
"description": "Cypress opensource Framework",
"repository": {
"url": "https://github.com/vivekbwaj/FrontendAutomationCypress.git"
},
"scripts": {
"clean": "rimraf cypress/reports",
"combine-reports": "mochawesome-merge ./cypress/reports/mocha/*.json > mochareports/mochawesome.json",
"generate-report": "marge mochareports/mochawesome.json -f report -o mochareports",
"cy:open": "cypress open",
"cy:ci": "cypress run --env configFile=prod --browser chrome --headless --spec 'cypress/integration/mocking.spec.js'",
"chrome:ci": "cypress run --env configFile=prod --browser chrome",
"firefox:ci": "cypress run --env configFile=prod --browser firefox",
"cy:test": "cypress run --env configFile=prod --spec 'cypress/integration/mocking.spec.js'",
"cy:test:all": "cypress run --env configFile=prod --headed --browser chrome",
"cy:chrome": "cypress run --env configFile=prod --headed --browser chrome --spec 'cypress/integration/search.spec.js'",
"cy:firefox": "cypress run --env configFile=prod --headed --browser firefox --spec 'cypress/integration/search.spec.js'",
"percytest": "percy exec -- node ./run-tests.js"
},
"keywords": [
"node",
"cypress",
"test",
"javascript"
],
"author": "Vivek Bhardwaj <[email protected]>",
"maintainers": [
"Vivek Bhardwaj"
],
"dependencies": {
"chalk": "4.1.0",
"chance": "^1.1.7",
"cross-env": "7.0.2",
"cypress": "5.3.0",
"date-fns": "^2.14.0",
"faker": "5.1.0",
"localforage": "1.7.3",
"lodash": "^4.17.20",
"rimraf": "3.0.2",
"uuid": "8.3.0"
},
"devDependencies": {
"@neuralegion/cypress-har-generator": "^5.0.1",
"@percy/cypress": "^2.3.1",
"@testing-library/cypress": "^7.0.0",
"@testing-library/react": "11.0.4",
"concurrently": "^5.3.0",
"http-server": "0.12.3",
"cypress-file-upload": "^4.1.1",
"cypress-multi-reporters": "1.4.0",
"cypress-react-unit-test": "4.13.0",
"cypress-redux": "^1.0.0",
"cypress-wait-until": "^1.7.1",
"cypress-xpath": "^1.6.0",
"eslint-plugin-cypress": "^2.10.3",
"fs-extra": "8.1.0",
"mocha": "7.2.0",
"mocha-junit-reporters": "1.23.6",
"mochawesome": "6.1.1",
"mochawesome-merge": "4.1.0",
"mochawesome-report-generator": "5.1.0",
"start-server-and-test": "^1.11.3",
"validator": "13.1.1",
"write-yaml": "^1.0.0"
}
}