-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "devconnector",
"version": "1.4.1",
"private": true,
"description": "Social network for developers",
"engines": {
"node": "18"
},
"main": "server.js",
"scripts": {
"client-install": "npm i --prefix client",
"server-install": "npm i",
"install-all": "npm run server-install && npm run client-install",
"start": "node server.js",
"backend": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently -k \"npm run backend\" \"npm run client\"",
"lint": "eslint .; exit 0",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Theofilos Chamalis",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.5",
"express": "^4.21.1",
"gravatar": "^1.8.2",
"helmet": "^6.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^6.11.4",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"validator": "^13.12.0"
},
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.22"
}
}