-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
{
"name": "library-api",
"version": "1.0.0",
"description": "Library Management API - TypeScript + Express",
"main": "dist/app.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/server.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [],
"author": "Trần Kính Hoàng (hoaug)",
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^10.1.0",
"@tanstack/query-sync-storage-persister": "^5.90.9",
"@types/node-cron": "^3.0.11",
"axios": "^1.12.2",
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-validator": "^7.2.1",
"helmet": "^7.0.0",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^2.0.2",
"mysql2": "^3.15.1",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.9",
"redis": "^5.9.0",
"twilio": "^5.10.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.9",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.4",
"@types/nodemailer": "^7.0.2",
"eslint": "^9.15.0",
"prettier": "^3.3.3",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}