-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "blogging-platform",
"version": "1.0.0",
"description": "Design and implementation of a more complex system for a blogging platform. With features like caching, rate-limiting, data modelling and some algorithmic features as well.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest",
"start:migrate:prod": "npx prisma migrate deploy && npm start"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^29.7.0",
"prisma": "^5.8.1"
},
"dependencies": {
"@prisma/client": "^5.11.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"bson": "^6.2.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.1.5",
"express-redis-cache": "^1.1.3",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"joi": "^17.12.0",
"jsonwebtoken": "^9.0.2",
"natural": "^6.10.4",
"nodemon": "^3.0.3",
"supertest": "^6.3.4",
"validator": "^13.11.0"
}
}