-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 897 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
{
"name": "blogs-api",
"version": "1.0.0",
"description": "API to serve blogs to users",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayantkatia/blogs-api.git"
},
"keywords": [
"blogs",
"api"
],
"author": "Jayant Katia",
"license": "MIT",
"bugs": {
"url": "https://github.com/jayantkatia/blogs-api/issues"
},
"homepage": "https://github.com/jayantkatia/blogs-api#readme",
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"express-validator": "^6.13.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.2",
"sequelize": "^6.12.0-alpha.1",
"uuid": "^8.3.2"
}
}