-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 918 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-app",
"version": "1.0.0",
"description": "Restful API developed with Node.js, Express.js and MongoDB.",
"main": "server.js",
"scripts": {
"test": "DEBUG=todo-app:* ava tests/ --verbose",
"start": "node server.js",
"restart": "nodemon server.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuanBalceda/todo-app.git"
},
"author": "Juan Balceda <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JuanBalceda/todo-app/issues"
},
"homepage": "https://github.com/JuanBalceda/todo-app#readme",
"devDependencies": {
"ava": "^0.25.0",
"nodemon": "^1.18.7",
"standard": "^12.0.1",
"supertest": "^3.3.0"
},
"dependencies": {
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.14",
"multer": "^1.4.1"
}
}