-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 810 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 810 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
27
28
29
30
31
32
33
34
35
36
{
"name": "testcontainers-node-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"async-redis": "^2.0.0",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"mysql": "^2.18.1",
"mysql2": "^3.9.7",
"pg": "^8.11.5",
"redis": "^4.6.13",
"selenium-webdriver": "^4.19.0",
"supertest": "^7.0.0"
},
"devDependencies": {
"@testcontainers/mysql": "^10.9.0",
"@testcontainers/postgresql": "^10.8.2",
"@testcontainers/redis": "^10.9.0",
"@testcontainers/selenium": "^10.8.2",
"@types/node": "^20.12.11",
"axios": "^1.6.8",
"jest": "^29.7.0",
"testcontainers": "^10.9.0"
},
"jest": {
"testTimeout": 1000000
}
}