-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 905 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
{
"name": "node-express-mongdb-api",
"version": "1.0.0",
"description": "A tutorial on how to build a node-express api with mongodb",
"main": "index.js",
"scripts": {
"start": "nodemon ./index.js --exec babel-node -e js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naxus28/node-express-mongdb-api.git"
},
"author": "Gabriel Ferraz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Naxus28/node-express-mongdb-api/issues"
},
"homepage": "https://github.com/Naxus28/node-express-mongdb-api#readme",
"dependencies": {
"body-parser": "^1.18.2",
"colors": "^1.2.1",
"express": "^4.16.3",
"mongoose": "^5.0.15",
"morgan": "^1.9.0",
"nodemon": "^1.17.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1"
}
}