-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
61 lines (61 loc) · 2.01 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
{
"name": "cypress-workshop-basics",
"version": "1.0.0",
"description": "Basics of end-to-end testing with Cypress.io test runner",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:answers": "cypress run --config 'specPattern=cypress/e2e/*/answer*.js'",
"cy:answers:open": "cypress open --config 'specPattern=cypress/e2e/*/answer*.js'",
"start": "npm start --prefix todomvc -- --quiet",
"test": "cypress run --config-file cypress.ci-config.js",
"ci": "start-test http://localhost:3000",
"dev": "start-test http://localhost:3000 cy:open",
"dev:answers": "start-test http://localhost:3000 cy:answers:open",
"postinstall": "npm install --prefix todomvc",
"reset": "npm run reset --prefix todomvc",
"slides": "vite --strictPort --port 3100",
"slides:dev": "start-test slides http://localhost:3100 cy:slides",
"slides:build": "vite build",
"cy:slides": "cypress open --config-file cypress.slides-config.js",
"cy:slides:run": "cypress run --config-file cypress.slides-config.js",
"dev:ci": "start-test 3000",
"names": "find-cypress-specs --names"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/cypress-workshop-basics.git"
},
"keywords": [
"cypress",
"cypress-io",
"e2e",
"end-to-end",
"testing",
"workshop"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/cypress-workshop-basics/issues"
},
"homepage": "https://github.com/bahmutov/cypress-workshop-basics#readme",
"devDependencies": {
"cy-spok": "1.6.2",
"cypress": "13.15.1",
"cypress-cdp": "1.6.8",
"cypress-map": "1.41.0",
"cypress-real-events": "1.13.0",
"cypress-recurse": "1.35.3",
"find-cypress-specs": "1.45.2",
"highlight.js": "11.10.0",
"prettier": "3.3.3",
"reveal.js": "5.1.0",
"start-server-and-test": "2.0.8",
"vite": "5.4.10"
},
"engines": {
"node": ">=12"
}
}