-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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": "booking-clone-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.3.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-templates": "^8.0.3",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.6",
"handlebars": "^4.7.7",
"helmet": "^4.4.1",
"hpp": "^0.2.3",
"joi": "^17.4.0",
"joi-objectid": "^3.0.1",
"joi-phone-number": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.16",
"morgan": "^1.10.0",
"nexmo": "^2.9.1",
"nodemailer": "^6.4.18",
"nodemailer-express-handlebars": "^4.0.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.1",
"xss-clean": "^0.1.1"
},
"engines": {
"node": "15.4.0"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pdybowski/booking-clone-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pdybowski/booking-clone-api/issues"
},
"homepage": "https://github.com/pdybowski/booking-clone-api#readme",
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}