-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
34
35
36
37
38
39
{
"name": "bbg-discord-bot-ts",
"version": "2.0.0",
"description": "Revamped TypeScript Discord bot for BBG Alliance.",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@prisma/client": "^5.10.0",
"@vitalets/google-translate-api": "^9.2.0",
"axios": "^1.6.0",
"discord.js": "^14.14.0",
"dotenv": "^16.4.0",
"node-fetch": "^3.3.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"nodemon": "^3.0.0",
"prettier": "^3.2.0",
"prisma": "^5.10.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}