-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tickets-backend",
"version": "1.0.0",
"description": "Grab your tickets backend",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js",
"dev": "nodemon src/index.ts",
"vercel-build": "echo hello"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Grab-your-tickets/tickets-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Grab-your-tickets/tickets-backend/issues"
},
"homepage": "https://github.com/Grab-your-tickets/tickets-backend#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.0",
"@types/nodemailer": "^6.4.14",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth2": "^0.1.8",
"@types/passport-google-oauth20": "^2.0.16",
"@types/pdfkit": "^0.13.3",
"@types/qr-image": "^3.2.9",
"@types/request": "^2.48.12",
"express": "^4.18.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@stripe/stripe-js": "^2.2.0",
"@types/http-errors": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/uuid": "^9.0.7",
"bcrypt": "^5.1.1",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express-rate-limit": "^7.1.5",
"express-session": "^1.18.0",
"firebase": "^10.7.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.8",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"pdfkit": "^0.14.0",
"qr-image": "^3.2.0",
"redis": "^4.6.11",
"request": "^2.88.2",
"stripe": "^14.5.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
}
}