-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 913 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
{
"name": "todo-list-api-server",
"version": "1.0.0",
"description": "RESTful API server for handling your TODO list using a client of your choice",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"TODO",
"list",
"task",
"manager"
],
"author": "John Georgiadis, Konstantinos Vlachantonis",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/csdinos/TODO-List-APIServer.git"
},
"bugs": {
"url": "https://github.com/csdinos/TODO-List-APIServer/issues"
},
"homepage": "https://github.com/csdinos/TODO-List-APIServer#readme",
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"email-validator": "^1.0.4",
"express": "^4.14.0",
"jsonwebtoken": "^7.1.6",
"mongodb": "^2.2.0",
"mongoose": "^4.5.4",
"validator": "^5.4.0"
}
}