-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.45 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.45 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "darts-automation-playwright",
"version": "0.0.1",
"main": "index.js",
"type": "module",
"scripts": {
"cucumber": "tsx node_modules/.bin/cucumber-js",
"api": "DEBUG=pw:api npm run cucumber",
"build": "npm run format && npm run lint && tsc",
"debug": "PWDEBUG=1 DEBUG=pw:api npm run cucumber ",
"browser": "SHOW_BROWSER=true npm run cucumber ",
"video": "PWVIDEO=1 npm run cucumber ",
"format": "prettier --write \"**/*.{ts,tsx,css,html}\" ",
"lint": "eslint",
"report": "open reports/report.html",
"all": "npm run cucumber features/**/*.feature",
"test": "npm run cucumber ",
"test:smoke": "npm run cucumber -- --tags @smoketest",
"test:all": "npm run cucumber -- --tags '@smoketest or @regression or @end2end'",
"test:fullfunctional": "npm run cucumber",
"test:sequential": "npm run cucumber -- -p sequential",
"test:sequential:smoke": "npm run cucumber -- --tags @smoketest -p sequential"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@cucumber/cucumber": "12.8.1",
"@cucumber/html-formatter": "21.15.1",
"@cucumber/messages": "^28.0.0",
"@cucumber/pretty-formatter": "1.0.1",
"@playwright/test": "1.59.1",
"@stylistic/eslint-plugin": "^5.0.0",
"@types/fs-extra": "11.0.4",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"allure-cucumberjs": "3.7.1",
"cucumber-html-reporter": "7.2.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-playwright": "2.10.2",
"eslint-plugin-prettier": "5.5.5",
"fs-extra": "11.3.4",
"multiple-cucumber-html-reporter": "3.10.0",
"open": "10.2.0",
"prettier": "3.8.3",
"ts-node": "10.9.2",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.7.0"
},
"packageManager": "yarn@4.14.1",
"dependencies": {
"@azure/storage-blob": "^12.26.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/luxon": "^3.4.2",
"@types/memory-cache": "^0.2.6",
"@types/supertest": "^6.0.2",
"@types/xml-escape": "^1.1.3",
"fast-xml-parser": "^5.5.7",
"luxon": "^3.5.0",
"md5-file": "^5.0.0",
"memory-cache": "^0.2.0",
"postgres": "^3.4.5",
"supertest": "^7.0.0",
"uuid": "^14.0.0",
"xml-escape": "^1.1.0"
},
"resolutions": {
"form-data": "^4.0.4",
"formidable": "^3.5.3",
"brace-expansion": "^5.0.0"
}
}