-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"name": "playwright-api-testing",
"version": "1.0.0",
"description": "---\r # Playwright API Testing Setup Guide\r ---",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:dev": "cross-env TEST_ENV=dev playwright test",
"test:qa": "cross-env TEST_ENV=qa playwright test",
"test:staging": "cross-env TEST_ENV=staging playwright test",
"test:prod": "cross-env TEST_ENV=prod playwright test",
"test:headed": "playwright test --headed",
"test:report": "playwright show-report",
"test:ci": "playwright test --reporter=line,junit,html",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier . --check",
"format:write": "prettier . --write",
"hooks:install": "git config core.hooksPath .githooks"
},
"keywords": [
"playwright",
"javascript",
"fakerjs",
"playwright api testing",
"playwright api testing example"
],
"author": "Code with MMAK",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^10.4.0",
"@playwright/test": "^1.60.0",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"luxon": "^3.7.2",
"npm-check-updates": "^22.2.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3"
}
}