-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 KB
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
45
46
47
48
49
50
{
"name": "blogforge",
"version": "1.0.0",
"description": "A modern RESTful API for blog platform with advanced features",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint .",
"test": "jest --runInBand --detectOpenHandles",
"test:watch": "jest --watch --runInBand",
"test:coverage": "jest --coverage --runInBand",
"seed": "node scripts/seed.js"
},
"keywords": [
"blog",
"api",
"express",
"mongodb",
"nodejs"
],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"winston": "^3.11.0",
"express-mongo-sanitize": "^2.1.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=14.0.0"
}
}