-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.64 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "store-data-verification",
"version": "1.0.0",
"description": "",
"scripts": {
"test:local": "npx playwright test",
"test:dev": "set ENV=dev && npx playwright test",
"test:mainnet": "cd playwright-api-testing && cross-env ENV=mainnet npx playwright test",
"test:preprod": "cd playwright-api-testing && cross-env ENV=prepod npx playwright test",
"test:local-trace": "npx playwright test --headed --trace on",
"test:dev-trace": "set ENV=dev && npx playwright test --headed --trace on",
"integration-test": "npx playwright test --grep '@integration'",
"test:smoke": "npx playwright test --grep '@smoke'",
"test:regression": "npx playwright test --grep '@regression'",
"lint": "eslint .",
"prepare": "husky && husky install",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"show-allure-report": "allure generate allure-results --clean -o playwright-api-testing/allure-report && allure serve playwright-api-testing/allure-results",
"run-and-show-PW-report": "cd playwright-api-testing && npx playwright test --reporter=html && npx playwright show-report",
"export-pdf": "node generate-pdf.js"
},
"keywords": [],
"author": "",
"private": true,
"devDependencies": {
"@playwright/test": "^1.38.1",
"@rushstack/eslint-patch": "^1.5.1",
"@types/fs-extra": "^11.0.2",
"@types/luxon": "^3.3.5",
"@types/node": "^20.8.3",
"@types/pg": "^8.11.6",
"@types/puppeteer": "^5.4.7",
"@types/stream-buffers": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"braces": ">=3.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^1.24.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"luxon": "^3.4.3",
"node-xlsx": "^0.4.0",
"prettier": "3.3.2",
"prettier-plugin-organize-imports": "^4.0.0",
"puppeteer": "^23.6.0",
"stream-buffers": "^3.0.2",
"typescript": "^5.6.3",
"winston": "^3.11.0"
},
"dependencies": {
"allure": "^0.0.0",
"allure-playwright": "^3.0.0-beta.11",
"axios": "^1.7.4",
"big-integer": "^1.6.52",
"cross-env": "^7.0.3",
"csv": "^6.3.6",
"csv-parse": "^5.5.2",
"eslint-plugin-playwright": "^1.5.2",
"husky-init": "^8.0.0",
"mongodb": "^6.2.0",
"node-fetch": "^3.3.2",
"path": "^0.12.7",
"pg": "^8.12.0",
"tsc-alias": "^1.8.10"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}