-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"name": "checkly-playwright-reporter-example",
"version": "1.0.0",
"description": "Example repo showcasing the Checkly Playwright Reporter — a self-contained vinyl shop app + Playwright tests that upload results to Checkly Test Sessions.",
"private": true,
"scripts": {
"dev": "node server.js",
"test": "npx playwright test",
"test:monitor": "npx playwright test --project=checkly",
"test:chromium": "npx playwright test --project=chromium",
"test:headed": "npx playwright test --headed --project=chromium",
"test:debug": "npx playwright test --debug --project=chromium",
"test:ui": "npx playwright test --ui",
"report": "npx playwright show-report",
"checkly": "npx checkly test",
"checkly:deploy": "npx checkly deploy",
"checkly:destroy": "npx checkly destroy",
"checkly:trigger": "npx checkly trigger --tags raccoon-records,demo"
},
"keywords": [
"playwright",
"checkly",
"testing",
"monitoring",
"reporter",
"e2e",
"test-sessions"
],
"license": "MIT",
"dependencies": {
"@libsql/client": "^0.17.2",
"better-sqlite3": "^12.8.0",
"express": "^4.21.0"
},
"devDependencies": {
"@checkly/playwright-reporter": "^1.8.0",
"@playwright/test": "^1.58.2",
"checkly": "^7.7.0",
"ts-node": "^10.9.2"
}
}