feature: simple npm setup

This commit is contained in:
2026-01-11 19:54:09 +01:00
parent 43cf57b34a
commit 39a192e330
5 changed files with 149 additions and 0 deletions

20
tests/e2e/package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "e2e",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.6",
"kafka-node": "^5.0.0",
"typescript": "^5.9.3"
}
}