-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.62 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "couriers-rest-api-test",
"version": "1.0.0",
"description": "Couriers Rest API Test",
"main": "index.mjs",
"author": "Christian Torrealba",
"private": true,
"scripts": {
"app:start": "docker-compose -p my-dockerized-app up -d --build",
"app:stop": "docker-compose down",
"server:start": "nodemon --experimental-specifier-resolution=node src/index.mjs",
"test": "jest --no-cache --detectOpenHandles --forceExit"
},
"license": "ISC",
"config": {
"mongodbMemoryServer": {
"debug": "0"
}
},
"jest": {
"setupFiles": [
"./setup-jest.mjs"
],
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/assets",
"/data"
],
"transform": {
"^.+\\.js?$": "babel-jest",
"^.+\\.mjs$": "babel-jest"
}
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status": "^1.7.3",
"mongodb": "^3.5.9",
"mongoose": "^5.9.25",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@types/dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^8.0.0",
"supertest": "^6.3.4"
}
}