-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.22 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
{
"name": "mern-instagram-clone-api",
"version": "1.0.0",
"description": "This is the back-end API for a MERN stack Instagram Clone. It uses Node with Express as the server, Mongoose as the ORM, and MongoDB as the database. The API is responsible for handling user-generated content, such as messages and comments. It is designed to be used in conjunction with a React front-end. It has two main models, Message and Comment, which are used to interact with the MongoDB.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glnewton/mern-instagram-clone-api.git"
},
"keywords": [],
"author": " Gary Newton",
"license": "ISC",
"bugs": {
"url": "https://github.com/glnewton/mern-instagram-clone-api/issues"
},
"homepage": "https://github.com/glnewton/mern-instagram-clone-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"moment": "^2.29.4",
"mongoose": "^6.8.4",
"request": "^2.88.2"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}