-
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) · 887 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 887 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
{
"name": "Sleep Tight discord-bot",
"version": "1.0.0",
"description": "",
"main": "dist/bot.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon -e js,ts src/bot.ts",
"prestart": "npm run build",
"build": "tsc",
"debug": "node --inspect-brk=0.0.0.0:9230 -r ts-node/register src/bot.ts"
},
"keywords": [],
"author": "Zikmix",
"license": "ISC",
"dependencies": {
"@discordjs/voice": "^0.16.0",
"@types/express": "^4.17.17",
"@types/node": "^20.2.3",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"libsodium-wrappers": "^0.7.11",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.41.0",
"nodemon": "^3.0.1",
"typescript": "^5.1.3"
}
}