-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 784 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
{
"name": "RESTful-API-with-Node.js-and-MongoDB",
"version": "1.0.0",
"description": "Simple RESTful API implementation on Node.js and MongoDB",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sreejonK19/RESTful-API-with-Node.js-and-MongoDB.git"
},
"keywords": [],
"author": "Mahmudul Hasan",
"license": "ISC",
"bugs": {
"url": "https://github.com/sreejonK19/RESTful-API-with-Node.js-and-MongoDB/issues"
},
"homepage": "https://github.com/sreejonK19/RESTful-API-with-Node.js-and-MongoDB#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mongoose": "^5.3.10"
}
}