-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
53 lines (53 loc) · 1.84 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
{
"name": "test-todomvc-using-app-actions",
"version": "1.0.0",
"description": "Example Cypress tests going from page objects to app actions",
"main": "index.js",
"scripts": {
"test": "cypress run",
"start": "http-server -p 8888 -c-1",
"start-quiet": "http-server -p 8888 -c-1 --silent",
"cypress": "cypress open",
"dev": "start-test 8888 cypress",
"print-tests": "find-cypress-specs --names --tags",
"lint": "tsc --noEmit --pretty",
"ci": "start-test 8888 cy:run",
"cy:run": "cypress run",
"badges": "npx -p dependency-version-badge update-badge cypress @bahmutov/cy-grep find-cypress-specs",
"specs": "spec-change --folder cypress",
"changed-specs": "find-cypress-specs --branch master --parent",
"trace-deps": "spec-change --folder cypress --save-deps deps.json --time",
"trace-changed-specs": "find-cypress-specs --branch master --parent --trace-imports cypress --cache-trace --max-added-traced-specs 4 --set-gha-outputs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/test-todomvc-using-app-actions.git"
},
"keywords": [
"cypress",
"cypress-io",
"cypress-example",
"todomvc"
],
"author": "Gleb Bahmutov <[email protected]> (https://glebbahmutov.com/)",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/bahmutov/test-todomvc-using-app-actions/issues"
},
"homepage": "https://github.com/bahmutov/test-todomvc-using-app-actions#readme",
"dependencies": {
"http-server": "14.1.1"
},
"devDependencies": {
"@bahmutov/cy-grep": "1.11.6",
"cypress": "13.16.1",
"cypress-repeat": "2.3.8",
"cypress-watch-and-reload": "1.10.16",
"find-cypress-specs": "1.46.2",
"prettier": "3.4.2",
"spec-change": "1.11.11",
"start-server-and-test": "1.15.5",
"typescript": "4.9.5"
}
}