-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 883 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 883 Bytes
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": "node-crud-rest",
"version": "1.0.0",
"description": "A simple restful NodeJS crud, with expressJS and mongoDB",
"main": "./app/server.js",
"scripts": {
"dev":"nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitor-veras/node-crud-rest.git"
},
"keywords": [
"nodejs",
"express",
"node",
"javascript",
"crud",
"restful",
"rest",
"api",
"mongo",
"mongodb"
],
"author": "Vitor Veras",
"license": "MIT",
"bugs": {
"url": "https://github.com/vitor-veras/node-crud-rest/issues"
},
"homepage": "https://github.com/vitor-veras/node-crud-rest#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"mongoose": "^4.13.5",
"nodemon": "^1.12.1",
"request": "^2.83.0"
}
}