This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
forked from cypress-io/cypress-example-kitchensink
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 3.12 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "cypress-example-kitchensink",
"version": "0.0.0-development",
"description": "This is an example app used to showcase Cypress.io 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 --fix cypress app/assets/js/scripts.js",
"lint:yaml": "yamllint '*.yml' 'basic/*.yml' .buildkite/pipeline.yml .semaphore/semaphore.yml '.github/workflows/*.yml'",
"colon:names": "colon-names",
"e2e": "cypress run",
"e2e:chrome": "cypress run --browser chrome",
"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: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",
"ci:set-port": "node ./scripts/set-port",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress-example-kitchensink.git"
},
"author": "Brian Mann",
"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-all": "^4.1.2",
"serve": "11.3.0"
},
"devDependencies": {
"@knapsack-pro/cypress": "5.3.1",
"@bahmutov/print-env": "1.2.0",
"@cypress/eslint-plugin-dev": "5.0.0",
"colon-names": "1.0.0",
"cypress": "10.1.0",
"eslint": "7.0.0",
"eslint-plugin-cypress": "2.8.1",
"eslint-plugin-json-format": "2.0.1",
"eslint-plugin-mocha": "5.3.0",
"execa": "2.0.5",
"globby": "9.1.0",
"husky": "1.3.1",
"netlify-plugin-cypress": "2.0.0",
"semantic-release": "15.13.32",
"start-server-and-test": "1.10.6",
"stop-build": "1.1.0",
"yaml-lint": "1.2.4"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks-off": {
"pre-commit": "npm run lint && npm run lint:yaml",
"pre-push": "npm run lint && npm run lint:yaml"
}
}
}