-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "airline-reservation-system",
"version": "0.0.1",
"description": "airline reservation sustem for B airwways developed for semester 4 project",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon start",
"lint": "./node_modules/.bin/eslint --ext .js config/ controllers/ helpers/ middlewares/ models/ routes/ services/ index.js",
"lint-fix": "./node_modules/.bin/eslint --fix --ext .js config/ controllers/ helpers/ middlewares/ models/ public/ routes/ services/ index.js",
"migrate": "node-pg-migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lakshan-Banneheke/Airline-Reservation-System.git"
},
"keywords": [
"database",
"airline",
"reservation",
"system"
],
"author": "Avishka,Dhaura,Thushani,Lakshan,Shashini",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lakshan-Banneheke/Airline-Reservation-System/issues"
},
"homepage": "https://github.com/Lakshan-Banneheke/Airline-Reservation-System#readme",
"dependencies": {
"@joi/date": "^2.0.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"connect-pg-simple": "^6.2.1",
"cookie-parser": "^1.4.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"joi": "^17.3.0",
"jspdf": "^2.3.0",
"node-pg-migrate": "^5.9.0",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"winston": "^3.3.3"
},
"devDependencies": {}
}