-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.55 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.55 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "friend_bot",
"version": "1.1.0",
"description": "Discord bot for a memey server",
"scripts": {
"build": "tsc",
"ts-watch": "tsc -w",
"start": "npm run build && node dist/index.js",
"start:debug": "npm start -- -debug",
"start:autoreload": "nodemon --watch src --ext ts,json --exec \"npm start\"",
"dev": "nodemon --watch src --ext ts,json --exec \"npm run start:debug\"",
"demon": "nodemon dist/index.js",
"test": "npx jest",
"lint": "eslint ./src --ext .ts --quiet --fix",
"lint-nofix": "eslint ./src --ext .ts --quiet",
"docs": "typedoc --excludePrivate --excludeExternals --out docs src/index.ts --theme default"
},
"author": "A group of friends",
"license": "MIT",
"dependencies": {
"@awkewainze/checkverify": "^1.0.3",
"@awkewainze/simpleduration": "^1.0.1",
"@awkewainze/simpletimer": "^1.0.0",
"@discordjs/opus": "^0.5.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@discordjs/voice": "^0.6.0",
"axios": "^0.21.4",
"bufferutil": "^4.0.3",
"bytes": "^3.1.0",
"discord-api-types": "^0.22.0",
"discord.js": "github:discordjs/discord.js",
"dotenv": "^10.0.0",
"erlpack": "github:discordapp/erlpack",
"ffmpeg-static": "^4.4.0",
"libsodium-wrappers": "^0.7.9",
"luxon": "^1.26.0",
"md5": "^2.3.0",
"music-metadata": "^7.11.4",
"node-graceful-shutdown": "^1.1.0",
"parse-duration": "^1.0.2",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"sharp": "^0.29.2",
"sqlite": "^4.0.23",
"sqlite3": "^4.2.0",
"timezones-list": "^3.0.1",
"tsyringe": "^4.5.0",
"utf-8-validate": "^5.0.4",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"youtube-dl-exec": "^1.3.3",
"ytdl-core": "^4.9.1",
"ytpl": "^2.2.3",
"ytsr": "^3.5.3",
"zlib-sync": "^0.1.4"
},
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.22",
"@types/luxon": "^1.26.4",
"@types/md5": "^2.3.1",
"@types/node": "^16.6.0",
"@types/redis": "^2.8.28",
"@types/sharp": "^0.29.3",
"@types/sqlite3": "^3.1.7",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"source-map-support": "^0.5.16",
"ts-jest": "^26.5.5",
"ts-node": "^10.2.1",
"tslib": "^1.14.1",
"typescript": "^4.2.4"
}
}