-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.63 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
59
60
61
62
63
{
"name": "medical-booking-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/index.js ",
"format": "prettier --write src/**/*.{js,json}",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-source-haui/medical-booking-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/open-source-haui/medical-booking-server/issues"
},
"homepage": "https://github.com/open-source-haui/medical-booking-server#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json}": "prettier --write"
},
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.1",
"helmet": "^7.0.0",
"http-status": "^1.7.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"mongoose": "^7.6.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.6",
"validator": "^13.11.0",
"winston": "^3.11.0",
"xss-clean": "^0.1.4"
}
}