-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 850 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
{
"name": "visit-me-backend",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"devStart": "nodemon index.js",
"client": "npm start --prefix ./client",
"dev": "concurrently \"npm run devStart\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"engines": {
"node": "14.x"
},
"author": "Satyam",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"json-web-token": "^3.2.0",
"jwt-decode": "^3.1.2",
"mongoose": "^5.9.16",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"concurrently": "^6.2.1",
"nodemon": "^2.0.13"
}
}