-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 952 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
{
"name": "socially-api",
"version": "1.0.0",
"description": "A minimal Social Media App API",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cstayyab/socially.git"
},
"homepage": "https://socially-backend.herokuapp.com/",
"scripts": {
"start": "node ./server.js",
"start:dev": "nodemon ./server.js"
},
"dependencies": {
"axios": "^0.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"express-jwt": "^6.1.1",
"form-data": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.7.3",
"mongoose": "^5.13.14",
"mongoose-autopopulate": "^0.16.0",
"mongoose-type-email": "^1.1.2",
"rootpath": "^0.1.2"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}