-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.71 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
{
"name": "cypress-template",
"version": "1.0.6",
"description": "Example of E2E tests with Cypress",
"main": "index.js",
"scripts": {
"verify": "cypress verify",
"open": "npm run compile && ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress open --env configFile=local",
"test": "npm run compile && QASE_REPORT=1 ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress run --env configFile=qa --record --key {CYPRESS_DASHBOARD_APIKEY} --parallel",
"test:local": "ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress run --env configFile=local --spec 'cypress/integration/api/api_delete_examples.spec.ts'",
"test:edge": "ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress run --env configFile=qa --browser edge --headless",
"compile": "tsc -p tsconfig.json",
"format": "prettier --config .prettierrc --write '**/*.ts'",
"lint": "eslint --config .eslintrc --fix '**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/estefafdez/cypress-template.git"
},
"keywords": [
"cypress",
"E2E",
"js",
"ts"
],
"author": "Estefania Fernández Muñoz",
"license": "ISC",
"bugs": {
"url": "https://github.com/estefafdez/cypress-template/issues"
},
"homepage": "https://github.com/estefafdez/cypress-template#readme",
"devDependencies": {
"cypress": "13.15.1",
"cypress-diff": "^0.0.6",
"cypress-junit-reporter": "^1.3.1",
"cypress-multi-reporters": "^2.0.4",
"cypress-qase-reporter": "^2.2.0",
"eslint": "^9.13.0",
"fs-extra": "^11.2.0",
"mocha": "^10.7.3",
"typescript": "^5.6.3"
},
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.8.0"
}
}