forked from BuidlZone-Labs/zicket-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "zicket-backend",
"version": "1.0.0",
"description": "Backend services for Zicket",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/start.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec npx ts-node src/start.ts",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write .",
"lint:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuidlZone-Labs/zicket-backend.git"
},
"keywords": [
"zicket",
"event",
"ticket",
"backend"
],
"author": "Dio Liam",
"license": "ISC",
"bugs": {
"url": "https://github.com/BuidlZone-Labs/zicket-backend/issues"
},
"homepage": "https://github.com/BuidlZone-Labs/zicket-backend#readme",
"dependencies": {
"@stellar/stellar-sdk": "^16.0.1",
"@types/passport-google-oauth20": "^2.0.17",
"@zk-email/helpers": "^6.4.2",
"bcrypt": "^6.0.0",
"bullmq": "^5.71.1",
"cloudinary": "^2.9.0",
"cors": "^2.8.6",
"dotenv": "^16.5.0",
"ethers": "^6.16.0",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"handlebars": "^4.7.8",
"helmet": "^8.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.13.2",
"multer": "^2.1.0",
"nodemailer": "^6.10.1",
"nodemon": "^3.1.9",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"redis": "^5.11.0",
"snarkjs": "^0.7.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.96",
"@types/multer": "^2.0.0",
"@types/node": "^22.14.1",
"@types/nodemailer": "^7.0.2",
"@types/oauth": "^0.9.6",
"@types/passport": "^1.0.17",
"@types/passport-oauth2": "^1.8.0",
"@types/supertest": "^6.0.3",
"@types/whatwg-url": "^13.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"supertest": "^7.2.2",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}