forked from hmcts/cmc-ccd-e2e-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.24 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
{
"name": "cmc-ccd-e2e-tests",
"version": "1.0.0",
"description": "End to End CCD tests for CMC",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix",
"test:debug": "npx playwright test --project full-functional --grep @debug",
"test:full-functional": "npx playwright test --project full-functional",
"test:functional": "NODE_PATH=. node ./node_modules/codeceptjs/bin/codecept.js run-multiple parallel -c ./src/test/end-to-end/ --steps --reporter mocha-multi",
"test:fullfunctional": "yarn playwright install && npx playwright test --project full-functional",
"test-crossbrowser-e2e": "NODE_PATH=. codeceptjs run-multiple ${BROWSER_GROUP:-'--all'} -c src/test/end-to-end/saucelabs.conf.js --plugins retryFailedStep --steps --grep '@crossbrowser' --reporter mocha-multi",
"test:crossbrowser": "BROWSER_GROUP=chrome ./bin/run-crossbrowser-tests.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmcts/cmc-ccd-e2e-tests.git"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@axe-core/playwright": "^4.9.0",
"axios": "^1.6.0",
"dependency-check": "^4.1.0",
"dotenv": "^16.4.5",
"html_codesniffer": "^2.5.1",
"node-cache": "^5.1.2",
"playwright-core": "^1.43.0",
"require-directory": "^2.1.1",
"typescript": "^5.4.5"
},
"devDependencies": {
"@hmcts/div-idam-test-harness": "^1.6.0",
"@playwright/test": "^1.43.0",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"codeceptjs": "^3.3.7",
"eslint": "8.33.0 ",
"eslint-plugin-codeceptjs": "^1.3.0",
"infinite-sequence-generator": "^1.1.0",
"launchdarkly-node-server-sdk": "^5.13.1",
"puppeteer": "^22.7.1",
"randomstring": "^1.1.5",
"sinon": "^5.0.7",
"totp-generator": "^1.0.0",
"urlencode": "^1.1.0",
"uuid": "^8.3.2",
"webdriverio": "^6.11.3"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hmcts/cmc-ccd-e2e-tests/issues"
},
"homepage": "https://github.com/hmcts/cmc-ccd-e2e-tests#readme"
}