-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 737 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 737 Bytes
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
{
"name": "testcontainer-node-example",
"version": "1.0.0",
"scripts": {
"test": "jest",
"test:jest:watch": "jest --watch",
"testcon:play": "npx playwright test",
"testcon:play:debug": "DEBUG=testcontainers* npx playwright test",
"testcon:jest": "DEBUG=testcontainers* npm test",
"report:play": "npx playwright show-report"
},
"keywords": [],
"author": "Simon Berner",
"license": "MIT",
"description": "A Testcontainers Node.js example",
"dependencies": {
"pg": "^8.14.1"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@testcontainers/postgresql": "^10.24.2",
"jest": "^29.7.0",
"testcontainers": "^10.24.2",
"testcontainers-node-playwright": "^0.5.5"
}
}