-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.93 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
{
"name": "ngcp-web-tests-e2e",
"version": "0.0.1",
"description": "Cypress.io based E2E testing scenarios for testing ngcp-csc-aui and ngcp-aui products",
"main": "index.js",
"author": "Sergii Leonenko <sleonenko@sipwise.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "cypress open",
"start:csc": "cypress open --config-file cypress.tdd.csc.config.js",
"start:aui": "cypress open --config-file cypress.tdd.aui.config.js",
"docker:rebuild:local": "docker build -f ./t/Dockerfile . -t ngcp-web-tests-e2e-trixie",
"docker:run:local": "bash ./bin/run-docker.sh local",
"docker:run": "bash ./bin/run-docker.sh",
"ci:csc": "cypress run --config-file cypress.ci.csc.config.js",
"ci:aui": "cypress run --config-file cypress.ci.aui.config.js",
"ci:setup": "cp ./cypress.ci.csc.template.js ./cypress.ci.csc.config.js && cp ./cypress.ci.aui.template.js ./cypress.ci.aui.config.js",
"tdd:csc": "cypress run --config-file cypress.tdd.csc.config.js --browser chrome",
"tdd:aui": "cypress run --config-file cypress.tdd.aui.config.js --browser chrome",
"tdd:setup": "cp ./cypress.tdd.csc.template.js ./cypress.tdd.csc.config.js && cp ./cypress.tdd.aui.template.js ./cypress.tdd.aui.config.js",
"setup": "cp ./cypress.csc.template.js ./cypress.csc.config.js && cp ./cypress.aui.template.js ./cypress.aui.config.js"
},
"dependencies": {
"adm-zip": "0.5.16",
"cypress": "15.6.0",
"cypress-wait-until": "3.0.2",
"jwt-decode": "3.1.2"
},
"devDependencies": {
"eslint": "^9.39.1",
"eslint-plugin-cypress": "^5.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-promise": "7.2.1",
"semver": "7.7.3",
"word-wrap": "1.2.5"
},
"engines": {
"node": ">=12.*",
"yarn": ">=4.17.1"
},
"packageManager": "yarn@4.17.1"
}