-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.24 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
{
"name": "little-isms-helper",
"private": true,
"devDependencies": {
"@hotwired/stimulus": "^3.2.2",
"@playwright/test": "^1.61.1",
"@types/node": "^25.9.3",
"js-yaml": "^4.2.0",
"jsdom": "^29.1.1",
"playwright": "^1.61.0",
"stylelint": "^17.14.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"scripts": {
"stylelint": "stylelint 'assets/styles/**/*.css'",
"screenshots": "node scripts/screenshots/capture.mjs",
"audit:console": "node scripts/screenshots/audit.mjs",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:debug": "playwright test --debug",
"e2e:report": "playwright show-report var/playwright-report",
"e2e:list": "playwright test --list",
"e2e:smoke": "bash scripts/browser-coverage/run.sh",
"e2e:smoke:report": "node scripts/browser-coverage/generate-report.mjs",
"e2e:scenarios": "bash scripts/browser-coverage/run-scenarios.sh",
"e2e:scenarios:report": "node scripts/browser-coverage/generate-scenario-report.mjs",
"test:js": "vitest run",
"test:js:watch": "vitest"
}
}