-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.37 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
{
"name": "playwright-boilerplate-using-package",
"version": "1.0.0",
"description": "NodeJs Playwright boilerplate project using package",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"test": "./node_modules/@playwright/test/cli.js test --config=node_modules/@angelo-loria/playwright-config-package-boilerplate/dist/playwright.config.js --workers=1",
"test:chromium": "yarn test --project=chromium",
"test:ci": "CI=true && yarn test",
"test:debug": "yarn test --debug --project=chromium",
"test:lighthouse": "CI=true && yarn test --config=./tests/lighthouse/playwright.config.ts && node ./.scripts/tesults-lighthouse.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angelo-loria/playwright-boilerplate-using-package.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/angelo-loria/playwright-boilerplate/issues"
},
"homepage": "https://github.com/angelo-loria/playwright-boilerplate-using-package#readme",
"devDependencies": {
"@angelo-loria/playwright-config-package-boilerplate": "1.0.28",
"@axe-core/playwright": "^4.8.1",
"@types/node": "^20.8.7",
"find-free-ports": "^3.0.0",
"lighthouse": "^11.3.0",
"node-fetch": "2",
"playwright-tesults-reporter": "^1.0.1",
"prettier": "^2.8.8",
"tesults": "^1.1.3"
}
}