-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1021 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
37
38
{
"name": "predict-med",
"version": "1.0.0",
"author": "Roshan Kanwar <rkanwar0708@gmail.com>",
"main": "server.js",
"scripts": {
"build": "cd client && yarn build",
"install-client": "cd client && yarn install",
"heroku-postbuild": "yarn install-client && yarn build",
"server": "node -r dotenv/config server.js",
"client": "cd client && yarn start",
"develop": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "yarn server"
},
"engines": {
"node": "14.15.1",
"yarn": "^1.22.4"
},
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"concurrently": "^6.1.0",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mongoose": "^5.12.9",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}