-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 914 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 914 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
{
"name": "devweb",
"version": "1.0.0",
"description": "social networking site for developers",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "shubham sharma",
"license": "MIT",
"dependencies": {
"axios": "^1.6.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"express": "^4.18.2",
"gravatar": "^1.8.2",
"jsonwebtoken": "9.0.2",
"mongoose": "^8.1.1",
"passport": "0.7.0",
"passport-jwt": "^4.0.1",
"validator": "^13.11.0"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}