-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "moviesapi",
"version": "1.0.0",
"description": "A moviesApI to handle movie search request of the customers",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest --watchAll --verbose --coverage",
"dev": "nodemon index.js"
},
"author": "Flanker",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.0",
"config": "^3.3.8",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.4.0",
"fawn": "^2.1.5",
"file-upload": "^0.0.0",
"helmet": "^6.0.0",
"joi": "^17.6.3",
"joi-objectid": "^4.0.2",
"joi-password-complexity": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb": "^4.10.0",
"mongoose": "^6.6.5",
"multer": "^1.4.5-lts.1",
"router": "^1.3.7",
"winston": "^3.8.2",
"winston-mongodb": "^3.0.2"
},
"devDependencies": {
"jest": "^29.2.2",
"nodemon": "^2.0.20",
"supertest": "^6.3.1"
}
}