-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 978 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 978 Bytes
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
{
"name": "webhook-engine",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "tsc",
"start": "bun src/index.ts",
"worker": "bun --watch src/worker.ts",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"jsonwebtoken": "^9.0.3"
},
"peerDependencies": {
"typescript": "^6.0.2"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"bullmq": "^5.74.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"express-validator": "^7.3.2",
"ioredis": "^5.10.1",
"nanoid": "^5.1.7",
"pg": "^8.20.0"
}
}