-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 993 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
{
"name": "beta_blog_backend",
"version": "1.0.0",
"description": "a blog backend",
"main": "server.js",
"scripts": {
"start": "set NODE_ENV=production&& node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aphatheology/beta_blog_backend.git"
},
"keywords": [],
"author": "Aphatheology",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aphatheology/beta_blog_backend/issues"
},
"homepage": "https://github.com/Aphatheology/beta_blog_backend#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-status": "^1.5.3",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.7.2",
"mongoose-slug-generator": "^1.0.4",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}