forked from cypress-io/testing-workshop-cypress
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.35 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
76
{
"name": "testing-workshop-cypress",
"version": "1.0.0",
"description": "A 3-4 hour testing workshop complete with application, exercise tests and speaker slides",
"main": "index.js",
"scripts": {
"test": "cypress run --spec 'cypress/integration/01-basic/*'",
"posttest": "cd react-todomvc && npm run reset",
"cy:open": "cypress open",
"cy:run": "cypress run",
"start": "http-server --silent -p 3000 -c-1 todomvc-react",
"start:react": "http-server --silent -p 3000 -c-1 react-todomvc",
"ci": "start-test 3000",
"dev": "start-test 3000 cy:open",
"postinstall": "cd todomvc && npm install",
"reset": "cd todomvc && npm run reset",
"format": "eslint --fix 'cypress/**/*.js'",
"lint": "eslint 'cypress/**/*.js'"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/davidtnguyen/testing-workshop-cypress.git"
},
"keywords": [
"cypress",
"cypress-io",
"e2e",
"end-to-end",
"testing",
"workshop"
],
"author": "David T Nguyen <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidtnguyen/testing-workshop-cypress/issues"
},
"homepage": "https://github.com/davidtnguyen/testing-workshop-cypress#readme",
"devDependencies": {
"@babel/plugin-proposal-do-expressions": "7.5.0",
"@cypress/browserify-preprocessor": "2.1.1",
"@cypress/code-coverage": "1.10.4",
"babel-plugin-istanbul": "5.2.0",
"cypress": "3.8.0",
"cypress-dark": "1.7.14",
"cypress-failed-log": "2.5.1",
"cypress-pipe": "1.5.0",
"cypress-plugin-snapshots": "1.2.9",
"cypress-react-unit-test": "2.4.3",
"cypress-xpath": "1.4.0",
"debug": "4.1.1",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-cypress": "2.7.0",
"eslint-plugin-prettier": "3.1.1",
"http-server": "0.12.0",
"istanbul-lib-coverage": "2.0.5",
"json-server": "0.15.1",
"json-server-reset": "1.3.0",
"mocha": "6.2.0",
"mocha-junit-reporter": "1.23.1",
"mocha-multi-reporters": "1.1.7",
"mochawesome": "4.1.0",
"mochawesome-merge": "1.0.7",
"mochawesome-report-generator": "4.0.1",
"nyc": "14.1.1",
"pluralize": "8.0.0",
"prettier": "1.18.2",
"start-server-and-test": "1.10.5",
"tsify": "4.0.1",
"typescript": "3.7.3"
},
"engines": {
"node": ">=8"
}
}