-
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) · 1022 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1022 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": "blog-website",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest --forceExit --detectOpenHandles",
"admin-audit": "node tools/adminAudit.js",
"docker:up": "docker compose up --build",
"docker:down": "docker compose down"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "A role-based blog website with Express.js, MongoDB, and a responsive frontend.",
"dependencies": {
"bcrypt": "^6.0.0",
"body-parser": "^2.2.1",
"cors": "^2.8.6",
"dompurify": "^3.4.7",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"helmet": "^8.2.0",
"jsdom": "^22.1.0",
"jsonwebtoken": "^9.0.3",
"mongodb": "^6.21.0",
"swagger-jsdoc": "^6.3.0",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"jest": "^30.4.2",
"mongodb-memory-server": "^11.1.0",
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
}
}