-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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": "healthcareapp",
"proxy": "http://localhost:5000",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=dev nodemon server.js --ignore client",
"concurrentDev": "concurrently \"cd client && npm run start\" \"npm run dev\""
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"chalk": "^5.1.0",
"concurrently": "^7.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"email-validator": "^2.0.4",
"express": "^4.18.1",
"form-data": "^4.0.0",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.35",
"mongodb": "^4.10.0",
"mongoose": "^6.6.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"react-toastify": "^9.1.3",
"tesseract.js": "^3.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}