-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 980 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": "todolist-be",
"description": "back end of ToDo List",
"version": "0.1.0",
"author": "Ioanna Lampropoulou",
"bugs": {
"url": "https://github.com/lampropoi/todolist-be/issues"
},
"dependencies": {
"apidoc": "^0.15.1",
"body-parser": "^1.15.0",
"express": "^4.13.4",
"mongoose": "^4.4.5"
},
"devDependencies": {
"eslint": "^2.2.0",
"eslint-config-google": "^0.4.0",
"jasmine-node": "^1.14.5",
"lodash": "^4.5.1",
"nodemon": "^1.9.0",
"request": "^2.69.0"
},
"homepage": "https://github.com/lampropoi/todolist-be#readme",
"keywords": [
"list",
"node",
"to-do"
],
"license": "MIT",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lampropoi/todolist-be.git"
},
"scripts": {
"jasmine": "jasmine-node test",
"test": "eslint app.js",
"start": "nodemon ./app.js localhost 8080",
"apidoc": "apidoc -f 'app.js$' ./ -o ./doc"
}
}