-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.14 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
{
"name": "members-playwright-tests",
"private": true,
"scripts": {
"mock:bank:init": "tsx mocks/bank/src/server.ts --init-only",
"mock:bank": "tsx mocks/bank/src/server.ts",
"mock:bank:watch": "tsx watch mocks/bank/src/server.ts",
"mock:oris:init": "tsx mocks/oris/src/server.ts --init-only",
"mock:oris": "tsx mocks/oris/src/server.ts",
"mock:oris:watch": "tsx watch mocks/oris/src/server.ts",
"test:e2e": "playwright test",
"test:e2e:no-oris": "MEMBERS_E2E_SUITE=no-oris playwright test",
"test:e2e:no-oris-key": "MEMBERS_E2E_SUITE=no-oris-key playwright test",
"test:e2e:bank-errors": "playwright test -c playwright.bank-errors.config.js",
"test:e2e:oris-errors": "playwright test -c playwright.oris-errors.config.js",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"playwright:install": "playwright install chromium"
},
"dependencies": {
"express": "4.21.2",
"mysql2": "3.15.2"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@types/express": "5.0.3",
"@types/node": "24.6.0",
"tsx": "4.20.6",
"typescript": "5.9.3"
}
}