-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "settle",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "export NODE_ENV=production&&node index.js",
"dev": "export DEBUG=app:*&&export NODE_ENV=development&& nodemon index.js",
"test": "export NODE_ENV=test&&export PORT=0 && jest --watchAll --verbose --coverage "
},
"engines": {
"node": "20.3.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1302.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"config": "^3.3.8",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.0.1",
"joi": "^17.7.0",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.8.3",
"path": "^0.12.7",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-mongodb": "^5.1.1"
},
"devDependencies": {
"debug": "^4.3.4",
"jest": "^29.4.1",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
},
"directories": {
"test": "tests"
},
"description": ""
}