-
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.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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": "batman-backend",
"version": "1.0.0",
"main": "./src/index.ts",
"type": "module",
"description": "A simple and easy-to-use payment gateway integration for Razorpay.",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"dev": "nodemon src/index.ts",
"build": "npm ci && tsc",
"start": "node dist/index.js",
"test": "vitest"
},
"repository": "MetridashCore/Batman-backend",
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MetridashCore/Batman-backend/issues"
},
"homepage": "https://github.com/MetridashCore/Batman-backend#readme",
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/node": "^22.19.0",
"nodemon": "^3.1.10",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
},
"dependencies": {
"@sentry/node": "^10.22.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-async-errors": "^3.1.1",
"helmet": "^8.1.0",
"razorpay": "^2.9.6",
"stripe": "^19.2.0",
"zod": "^4.1.12"
}
}