-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.89 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
72
73
74
75
76
77
78
79
80
81
{
"name": "cypress-example-kitchensink",
"version": "0.0.0-development",
"description": "This is an example app used to showcase Cypress.io End-to-End (E2E) testing. For a full reference of our documentation, go to https://docs.cypress.io",
"main": "index.js",
"files": [
"app",
"cypress"
],
"scripts": {
"build": "npm run lint",
"start": "node ./scripts/start.js",
"dev": "npm start",
"test": "npm start & cypress run",
"pretest": "npm run lint",
"print-env": "print-env",
"lint": "eslint",
"lint:fix": "eslint --fix",
"e2e": "cypress run",
"e2e:chrome": "cypress run --browser chrome",
"e2e:edge": "cypress run --browser edge",
"e2e:firefox": "cypress run --browser firefox",
"e2e:record": "cypress run --record",
"e2e:record:chrome": "cypress run --record --browser chrome",
"e2e:record:edge": "cypress run --record --browser edge",
"e2e:record:firefox": "cypress run --record --browser firefox",
"e2e:record:parallel": "cypress run --record --parallel",
"test:ci": "run-p --race start e2e",
"test:ci:chrome": "run-p --race start e2e:chrome",
"test:ci:edge": "run-p --race start e2e:edge",
"test:ci:firefox": "run-p --race start e2e:firefox",
"test:ci:record": "run-p --race start e2e:record",
"test:ci:record:chrome": "run-p --race start e2e:record:chrome",
"test:ci:record:edge": "run-p --race start e2e:record:edge",
"test:ci:record:firefox": "run-p --race start e2e:record:firefox",
"test:ci:record:parallel": "run-p --race start e2e:record:parallel",
"cy:verify": "cypress verify",
"cy:info": "cypress info",
"cy:version": "cypress version",
"cy:cache:list": "cypress cache list",
"cy:run": "cypress run",
"cy:run:record": "cypress run --record",
"cy:open": "cypress open",
"local:open": "start-test 8080 cy:open",
"local:run": "start-test 8080 cy:run",
"local:run:record": "start-test 8080 cy:run:record",
"prepare": "node .husky/install.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/cypress-example-kitchensink.git"
},
"author": "Cypress-io",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/cypress-example-kitchensink/issues"
},
"homepage": "https://github.com/cypress-io/cypress-example-kitchensink#readme",
"dependencies": {
"npm-run-all2": "8.0.4",
"serve": "14.2.6"
},
"devDependencies": {
"@bahmutov/print-env": "2.1.2",
"@eslint/js": "10.0.1",
"@eslint/json": "2.0.0",
"@html-eslint/eslint-plugin": "0.62.0",
"@stylistic/eslint-plugin": "5.10.0",
"cypress": "15.17.0",
"eslint": "10.4.1",
"eslint-plugin-cypress": "6.4.1",
"eslint-plugin-mocha": "11.3.0",
"eslint-plugin-yml": "3.4.0",
"globals": "17.6.0",
"husky": "9.1.7",
"start-server-and-test": "3.0.11"
},
"engines": {
"node": "^22.14.0 || >=24.11.0"
}
}