-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.06 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
{
"name": "playwright-demo-js-full-stack",
"version": "1.0.0",
"description": "A comprehensive Playwright JavaScript demo project showcasing UI and API automation with best practices",
"type": "module",
"main": "main.js",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test tests/ui/ --headed",
"test:api": "playwright test tests/api/",
"test:smoke": "playwright test --grep @smoke",
"test:parallel": "playwright test --workers=50%",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"test:watch": "playwright test --watch",
"check:env": "node scripts/check-env.js"
},
"keywords": [
"playwright",
"automation",
"testing",
"ui-automation",
"api-automation",
"e2e-testing",
"javascript"
],
"author": "Mahmudul Robin <mahmud.h.robin@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"eslint": "^9.15.0",
"prettier": "^3.3.3"
}
}