-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.77 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cypress-demo",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@cypress/code-coverage": "^3.9.1",
"@cypress/react": "^4.16.3",
"@testing-library/cypress": "^7.0.3",
"cross-env": "^5.1.4",
"cypress": "^6.3.0",
"cypress-multi-reporters": "^1.4.0",
"cypress-select-tests": "^1.5.9",
"eslint-plugin-cypress": "^2.11.2",
"mocha": "^8.2.1",
"mochawesome": "^6.2.1",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.1.0",
"react-scripts": "^4.0.1",
"start-server-and-test": "^1.11.7"
},
"dependencies": {
"@cypress/instrument-cra": "^1.4.0",
"history": "^4.6.3",
"marked": "^0.3.6",
"prop-types": "^15.5.10",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-redux": "^5.0.7",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.1",
"superagent": "^3.8.2",
"superagent-promise": "^1.1.0",
"testing-library": "0.0.2"
},
"scripts": {
"start": "cross-env PORT=4100 react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"unittest": "cross-env PORT=4100 react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"cypress:open": "cypress open --env TEST_TAGS=CD",
"cy:run": "node cypress_runner -b chrome -m headless -s 'cypress/tests/**/*.spec.js' --env TEST_TAGS=CD",
"cy:run:mobile": "node cypress_runner -b chrome -m headless --config viewportWidth=375,viewportHeight=667 -s 'cypress/tests/**/*.spec.js' --env TEST_TAGS=CD",
"cy:run:firefox": "node cypress_runner -b firefox -m headless -s 'cypress/tests/**/*.spec.js' --env TEST_TAGS=CD",
"cy:run:security": "node cypress_runner -b chrome -m headless -s 'cypress/tests/**/*.spec.js' --env TEST_TAGS=SECURITY",
"cy:run:smoke": "node cypress_runner -b chrome -m headless -s 'cypress/tests/**/*.spec.js' --env TEST_TAGS=SMOKE",
"cy:parallel:run": "cypress run --record --key cypress_demo --parallel --ci-build-id $CI_CONCURRENT_ID",
"cy:verify": "cypress verify",
"cy:info": "cypress info",
"cy:version": "cypress version",
"test:ci": "start-server-and-test start http://localhost:4100 cy:run",
"test:ci:mobile": "start-server-and-test start http://localhost:4100 cy:run:mobile",
"test:ci:firefox": "start-server-and-test start http://localhost:4100 cy:run:firefox",
"test:ci:security": "start-server-and-test start http://localhost:4100 cy:run:security"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}