-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.28 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
{
"name": "automation-exercise-playwright",
"version": "2.0.0",
"description": "Automation tests for online shop by using Playwright framework.",
"main": "index.js",
"scripts": {
"format": "npx prettier --write .",
"format:check": "npx prettier . --check \"!**.ts\"",
"lint": "npx eslint . --max-warnings 0",
"tsc:check": "tsc --noEmit --pretty --strict",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:smoke": "npx playwright test -g @smoke",
"test:headed": "npm run test tests/e2e/test.spec.ts -- --headed",
"test:api": "npx playwright test tests/api/api.spec.ts --project=chromium",
"record": "npx playwright codegen https://automationexercise.com"
},
"keywords": [],
"author": "Marcin Pawłowski",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.49.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/node": "^22.10.2",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}