-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 809 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 809 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
{
"name": "devconnector",
"version": "1.0.0",
"description": "Social Network for developers",
"main": "server.js",
"author": "Indranil Halder <indranilhalder.dev@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node -r esm server.js",
"server": "nodemon -r esm server",
"client": "yarn --cwd client start",
"dev": "concurrently \"yarn server\" \"yarn client\""
},
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"config": "^3.3.7",
"esm": "^3.2.25",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"gravatar": "^1.8.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.0",
"request": "^2.88.2"
},
"devDependencies": {
"concurrently": "^7.2.2",
"nodemon": "^2.0.18"
}
}