forked from AlexanderWyss/discord-bot-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "discord-bot-node",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./bin/www",
"serve": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@discordjs/opus": "^0.7.0",
"@types/cors": "^2.8.12",
"@types/he": "^1.1.2",
"@types/socket.io": "^2.1.13",
"@types/socket.io-parser": "^2.2.1",
"@types/ws": "^7.4.7",
"bufferutil": "^4.0.6",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "~4.3.4",
"discord.js": "^12.5.3",
"discord.js-commando": "github:discordjs/Commando",
"dotenv": "^16.0.1",
"erlpack": "github:discordapp/erlpack",
"express": "^4.18.1",
"ffmpeg-static": "^5.0.0",
"he": "^1.2.0",
"libsodium-wrappers": "^0.7.10",
"morgan": "~1.10.0",
"socket.io": "^2.4.1",
"sqlite": "^4.1.1",
"ytdl-core": "4.9.2",
"ytpl": "^2.3.0",
"ytsr": "^3.8.0",
"zucc": "^0.1.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^12.20.52",
"nodemon": "^2.0.16",
"tslint": "^6.1.3",
"typescript": "^4.7.2"
},
"nodemonConfig": {
"delay": 2500,
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules",
"dist",
"client"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
}
}