mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
31 lines
889 B
JSON
31 lines
889 B
JSON
{
|
|
"name": "workflowui-test-server",
|
|
"version": "1.0.0",
|
|
"description": "Mock DBAL server for WorkflowUI integration testing",
|
|
"private": true,
|
|
"main": "mock-dbal.ts",
|
|
"scripts": {
|
|
"start": "tsx mock-dbal.ts",
|
|
"dev": "tsx watch mock-dbal.ts",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:comprehensive": "playwright test comprehensive.spec.ts --reporter=list",
|
|
"test:integration": "playwright test integration.spec.ts --reporter=list"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"cors": "^2.8.5",
|
|
"body-parser": "^1.20.2",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.48.2",
|
|
"@types/express": "^4.17.21",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/node": "^20.11.0",
|
|
"@types/uuid": "^9.0.7",
|
|
"tsx": "^4.7.0"
|
|
}
|
|
}
|