-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 845 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
{
"name": "webhook-example-taddy",
"version": "1.0.0",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"worker": "tsx watch src/worker.ts",
"worker:start": "node dist/worker.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1",
"iovalkey": "^0.3.3",
"postgres": "^3.4.8"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.3.3",
"drizzle-kit": "^0.31.9",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}