-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "globetrotter_backend",
"version": "1.0.0",
"description": "Backend for Globetrotter - The Ultimate Travel Guessing Game",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"lint": "eslint ."
},
"keywords": [],
"author": "Ashvin C K",
"license": "ISC",
"dependencies": {
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"http-errors": "^2.0.0",
"joi": "^17.13.3",
"mongoose": "^8.11.0",
"morgan": "^1.10.0",
"redis": "^4.7.0",
"socket.io": "^4.8.1",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/config/database.js",
"!src/utils/logger.js"
]
},
"engines": {
"node": ">=16.0.0"
}
}