-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
43
44
45
46
47
48
49
50
{
"name": "mitravel",
"version": "1.0.0",
"description": "Secure user authentication and authorization, Comprehensive account and data management, Easy tour booking and integrated review system, Secure payment processing through RESTful APIs",
"main": "dist/server.js",
"scripts": {
"build": "npx tsc",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/server.ts",
"start": "NODE_ENV=production node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "Oleksii Myshuniaiev",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/validator": "^13.12.2",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"dependencies": {
"@types/nodemailer": "^6.4.16",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.15",
"slugify": "^1.6.6",
"tsconfig-paths": "^4.2.0",
"uuid": "^10.0.0",
"validator": "^13.12.0",
"xss": "^1.0.15"
}
}