-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1 KB
/
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
42
43
44
{
"name": "blog-api",
"version": "1.0.0",
"engines": {
"node": "16.4.2"
},
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JHurdle91/blog-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JHurdle91/blog-api/issues"
},
"homepage": "https://github.com/JHurdle91/blog-api#readme",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.0.1",
"mongoose": "^5.13.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"async": "^3.2.1",
"eslint": "^7.32.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
}
}