-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 960 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": "devconnector",
"version": "1.0.0",
"description": "social network for developers",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix client",
"server": " nodemon server.js",
"client" : "npm start --prefix client",
"dev" : "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hemantreddy/dev-connector.git"
},
"author": "Hemant",
"license": "MIT",
"bugs": {
"url": "https://github.com/hemantreddy/dev-connector/issues"
},
"homepage": "https://github.com/hemantreddy/dev-connector#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"concurrently": "^4.1.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"gravatar": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^11.0.0"
}
}