-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.02 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
{
"name": "cypress-tests",
"version": "0.1.0",
"description": "End-to-end tests for Spryker applications.",
"main": "index.js",
"author": {
"name": "Spryker Systems GmbH",
"email": "info@spryker.com",
"url": "https://spryker.com/"
},
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write",
"cy:open": "cypress open",
"cy:run": "cypress run --spec \"cypress/e2e/!(smoke)/**/*.ts\"",
"cy:ci": "cypress run --spec \"cypress/e2e/!(smoke)/**/!(ssp)*.ts\" --headless --browser chrome",
"cy:ci:backoffice": "cypress run --spec \"cypress/e2e/backoffice/**/!(ssp)*.ts\" --headless --browser chrome",
"cy:ci:api": "cypress run --spec \"cypress/e2e/api/**/!(ssp)*.ts\" --headless --browser chrome",
"cy:ci:mp": "cypress run --spec \"cypress/e2e/mp/**/!(ssp)*.ts\" --headless --browser chrome",
"cy:ci:yves": "cypress run --spec \"cypress/e2e/yves/**/!(ssp)*.ts\" --headless --browser chrome",
"cy:ci:ssp": "cypress run --spec \"cypress/e2e/!(smoke)/**/(ssp)*.ts\" --headless --browser chrome",
"cy:smoke": "cypress run --spec \"cypress/e2e/smoke/**/*.ts\" --headless --browser chrome",
"cy:dms": "cypress run --spec \"cypress/e2e/!(smoke)/**/*dms.cy.ts\" --headless --browser chrome",
"cy:smoke:demo": "cypress run --spec \"cypress/e2e/smoke/!(product)/*.ts\" --headless --browser chrome",
"cy:repack": "node tools/scripts/cypress-shards/repack.mjs"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"devDependencies": {
"@cypress/grep": "^4.1.1",
"@faker-js/faker": "^8.4.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cypress": "^14.5.4",
"cypress-file-upload": "^5.0.8",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^2.15.2",
"inversify": "^6.0.2",
"prettier": "^3.4.1",
"reflect-metadata": "^0.2.2",
"typescript": "~5.3.3"
}
}