-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "ngcp-web-tests-e2e",
"version": "0.0.1",
"description": "Cypress.io based E2E testing scenarios for testing ngcp-csc-ui and ngcp-admin-ui products",
"main": "index.js",
"author": "Sergii Leonenko <[email protected]>",
"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-bullseye",
"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",
"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.json ./cypress.tdd.csc.json && cp ./cypress.tdd.aui.template.json ./cypress.tdd.aui.config.js"
},
"dependencies": {
"@nuintun/qrcode": "^3.3.1",
"adm-zip": "0.5.15",
"cypress": "13.15.0",
"cypress-wait-until": "3.0.2",
"jwt-decode": "3.1.2",
"yarn": "1.22.22"
},
"devDependencies": {
"eslint": "^9.12.0",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-standard": "^5.0.0",
"semver": "7.6.3",
"word-wrap": "1.2.5"
},
"engines": {
"node": ">=12.*"
}
}