-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 897 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 897 Bytes
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
{
"name": "mylist-api",
"version": "1.0.0",
"description": "A RESTful API for performing CRUD operations on things to do",
"main": "main.js",
"scripts": {
"start": "node server-local.js",
"dev": "nodemon server-local.js",
"build": "netlify build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"todo",
"list",
"board",
"task"
],
"author": "Gbolahan Balogun",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.5",
"mongoose": "^5.12.2",
"netlify-cli": "^15.1.1",
"nodemailer": "^6.5.0",
"serverless-http": "^3.2.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}