-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "fixservice_payment",
"version": "1.0.0",
"description": "This is a fix-Service-Payment Platform Those who are Looking for Home Services",
"main": "server.ts",
"scripts": {
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"stripe:webhook": "stripe listen --forward-to localhost:5000/api/payments/webhook",
"postinstall": "prisma generate",
"build": "prisma generate && tsup",
"vercel-build": "prisma generate && tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rahmancoder/FixService_payment.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/rahmancoder/FixService_payment/issues"
},
"homepage": "https://github.com/rahmancoder/FixService_payment#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^26.1.0",
"@types/pg": "^8.20.0",
"@types/uuid": "^10.0.0",
"prisma": "^7.8.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.3",
"pg": "^8.22.0",
"stripe": "^22.3.0",
"tsup": "^8.5.1",
"uuid": "^14.0.1",
"zod": "^4.4.3"
}
}