-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.1 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
32
33
34
{
"name": "pr-tracker-discord-bot",
"version": "1.0.3",
"main": "index.js",
"scripts": {
"start": "npm run deploy-node && TS_NODE_BASEURL=./build node -r tsconfig-paths/register build/src/index.js",
"build": "tsc",
"dev": "nodemon -r dotenv/config -r tsconfig-paths/register src/index.ts | pino-pretty -t SYS:standard -o '{module} - {msg}' -i module",
"deploy": "ts-node -r dotenv/config -r tsconfig-paths/register scripts/deploy-commands.ts",
"deploy-node": "TS_NODE_BASEURL=./build node -r tsconfig-paths/register build/scripts/deploy-commands.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^0.5.0",
"@prisma/client": "^4.1.0",
"async-mutex": "^0.4.0",
"discord.js": "^13.8.1",
"express": "^4.18.1",
"http-status-codes": "^2.2.0",
"joi": "^17.6.0",
"pino": "^8.1.0",
"pino-http": "^8.1.1",
"tsconfig-paths": "^4.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"dotenv": "^16.0.1",
"nodemon": "^2.0.19",
"pino-pretty": "^8.1.0",
"prisma": "^4.1.0",
"ts-node": "^10.8.2"
}
}