-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
51
{
"name": "blog-api",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\""
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"type": "commonjs",
"description": "",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsdom": "^28.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.3",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@logtail/node": "^0.5.8",
"@logtail/winston": "^0.5.8",
"bcrypt": "^6.0.0",
"cloudinary": "^2.9.0",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dompurify": "^3.3.1",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.3.1",
"helmet": "^8.1.0",
"jsdom": "^28.1.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^8.16.0",
"multer": "^2.1.0",
"winston": "^3.17.0"
}
}