-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1011 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
36
37
38
{
"name": "co-libry",
"version": "1.0.0",
"description": "Social Network for traveler and goods owner",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Andy AFENE",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"concurrently": "^4.1.2",
"express": "^4.17.1",
"gravatar": "^1.8.1",
"jsonwebtoken": "^8.5.1",
"mongo": "^0.1.0",
"mongodb": "^3.6.4",
"mongoose": "^5.11.17",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"prop-types": "^15.7.2",
"react-bootstrap": "^1.5.0",
"react-materialize": "^2.6.0",
"react-scripts": "^4.0.2",
"validator": "^10.10.0"
},
"devDependencies": {
"nodemon": "^1.19.4"
}
}