forked from lewisakura/webhook-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.1 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.1 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
{
"scripts": {
"update": "git pull && yarn && yarn build && pm2 reload webhook-proxy webhook-proxy-processor || true",
"build:db": "prisma migrate deploy && prisma generate",
"build": "yarn build:db && yarn rimraf dist && yarn tsc",
"start": "ts-node --transpile-only src/index.ts"
},
"dependencies": {
"@prisma/client": "^3.14.0",
"amqplib": "^0.8.0",
"axios": "^0.22.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-slow-down": "^1.4.0",
"helmet": "^4.6.0",
"ioredis": "^4.28.1",
"rate-limit-redis": "^2.1.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/express-slow-down": "^1.3.1",
"@types/ioredis": "^4.28.1",
"@types/node": "^16.10.2",
"@types/rate-limit-redis": "^1.7.2",
"prisma": "^3.14.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
}
}