-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "vet_health",
"version": "1.0.0",
"description": "Application to link farmer with health officer at their convinience",
"main": "index.js",
"directories": {
"test": "tests"
},
"engines": {
"node": "10.16.3"
},
"scripts": {
"server": "nodemon index.js ",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "jest --verbose --runInBand",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"keywords": [
"Vet",
"Health"
],
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules"
]
},
"author": "Samuel Maina",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileuploader": "0.0.7",
"geopoint": "^1.0.1",
"googleapis": "^75.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.12",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"supertest": "^6.1.3"
},
"devDependencies": {}
}