forked from jankivaghasiya/doctor_appointment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 969 Bytes
/
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
{
"name": "doctor_appointment",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon backend/server",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm start\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jankivaghasiya/doctor_appointment.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jankivaghasiya/doctor_appointment/issues"
},
"homepage": "https://github.com/jankivaghasiya/doctor_appointment#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"mongoose": "^6.0.8",
"react-responsive-carousel": "^3.2.21",
"react-router-dom": "^5.3.0",
"validator": "^13.6.0"
},
"devDependencies": {
"concurrently": "^6.3.0",
"nodemon": "^2.0.13"
}
}