-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 KB
/
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
39
40
41
{
"name": "devhub",
"version": "1.0.0",
"description": "Social Network for developers",
"main": "server.js",
"scripts": {
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"builds": "npm install --prefix client && npm run build --prefix client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhruvilcodes/Social_Media_For_Developers.git"
},
"author": "dhruvilcodes",
"license": "ISC",
"bugs": {
"url": "https://github.com/dhruvilcodes/Social_Media_For_Developers/issues"
},
"homepage": "https://github.com/dhruvilcodes/Social_Media_For_Developers#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^7.2.2",
"config": "^3.3.7",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-validator": "^6.14.1",
"formidable": "^2.0.1",
"gravatar": "^1.8.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.3.8",
"request": "^2.88.2"
},
"resolutions": {
"cssnano-preset-simple": "3.0.0"
}
}