21 lines
612 B
JSON
21 lines
612 B
JSON
{
|
|
"name": "@project/e2e",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "End-to-end test harness — Cucumber + Playwright.",
|
|
"scripts": {
|
|
"test": "cucumber-js --config tests/cucumber.mjs --tags 'not @skip'",
|
|
"test:headed": "HEADED=1 cucumber-js --config tests/cucumber.mjs --tags 'not @skip'",
|
|
"test:tag": "cucumber-js --config tests/cucumber.mjs --tags",
|
|
"tsc": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@cucumber/cucumber": "^11.0.0",
|
|
"@playwright/test": "^1.50.0",
|
|
"@types/node": "^22",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "~5.8.0"
|
|
}
|
|
}
|