-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 KB
/
package.json
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
{
"scripts": {
"update": "git pull && yarn && yarn build && pm2 reload webhook-proxy webhook-proxy-processor || true",
"build": "prisma migrate deploy && prisma generate && rimraf dist && tsc",
"start": "yarn build && node dist"
},
"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"
},
"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"
}
}