-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 996 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
35
36
37
38
39
40
41
{
"name": "doglife-nodejs-restapi",
"version": "1.0.0",
"description": "A API for doglife-react project",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onluiz/doglife-nodejs-restapi.git"
},
"bugs": {
"url": "https://github.com/onluiz/doglife-nodejs-restapi/issues"
},
"homepage": "https://github.com/onluiz/doglife-nodejs-restapi#README",
"keywords": [
"template restAPI nodejs"
],
"author": "https://github.com/onluiz",
"license": "ISC",
"engines": {
"node": "6.6.0"
},
"dependencies": {
"bcrypt": "1.0.2",
"body-parser": "1.17.2",
"cors": "^2.8.4",
"express": "4.15.3",
"jsonwebtoken": "7.4.3",
"mocha": "3.5.0",
"mongoose": "4.11.6",
"passport": "0.4.0",
"passport-jwt": "3.0.0",
"pg": "7.0.2"
},
"devDependencies": {
"nodemon": "1.11.0"
}
}