-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 958 Bytes
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
{
"name": "pharmacie-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"server": "nodemon src/index.js",
"client": "npm run start --prefix ../med-finder-client",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.8.9",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"validator": "^12.2.0",
"winston": "^3.2.1"
},
"devDependencies": {
"concurrently": "^5.0.2",
"jshint": "^2.11.0",
"nodemon": "^2.0.2"
}
}