-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 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
{
"name": "siyoga-travels-backend",
"version": "1.0.0",
"description": "Backend API for Trip and Travel Management System",
"main": "src/server.js",
"scripts": {
"start": "node backend/src/server.js",
"dev": "nodemon backend/src/server.js",
"test": "echo \"No tests specified\" && exit 0",
"test:db": "node backend/src/test-connection.js",
"test:api": "node backend/src/test-api.js",
"seed": "node src/scripts/seed-data.js"
},
"keywords": [
"travel",
"tourism",
"booking",
"vehicle management"
],
"author": "H.K.P.D.Wickramasinghe",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"express-rate-limit": "^7.1.1",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"msnodesqlv8": "^4.5.0",
"mssql": "^10.0.4",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.10.1",
"stripe": "^14.25.0",
"tedious": "^18.6.1",
"uuid": "^11.1.0",
"winston": "^3.11.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=14.0.0"
}
}