-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.68 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
{
"name": "discord-mgmt-bot",
"version": "1.0.0",
"description": "general purpose bot",
"main": "dist/index.js",
"repository": "https://gitlab.com/EmmaJCline/discord-mgmt-bot.git",
"author": "Emma Cline <emma@cline.engineer>",
"license": "MIT",
"private": false,
"engineStrict": true,
"type": "module",
"engines": {
"node": "14.10.1"
},
"scripts": {
"build": "tsc",
"start": "node --experimental-modules --experimental-json-modules -r dotenv/config dist/index.js",
"test": "",
"lint": "eslint src/**/*.ts --fix && prettier --check src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"dev": "tsnodemon -x 'yarn run start'"
},
"dependencies": {
"@discordjs/opus": "0.3.2",
"aws-sdk": "2.771.0",
"axios": "0.20.0",
"axios-retry": "3.1.9",
"bufferutil": "4.0.1",
"discord-backup": "2.2.5",
"discord.js": "12.3.1",
"dotenv": "8.2.0",
"erlpack": "discord/erlpack",
"express": "4.17.1",
"ffmpeg-static": "4.2.7",
"fkill": "7.0.1",
"javascript-time-ago": "2.2.8",
"libsodium-wrappers": "0.7.8",
"lodash": "4.17.20",
"node-cron": "2.0.3",
"pify": "5.0.0",
"utf-8-validate": "5.0.2",
"valid-url": "1.0.9",
"youtube-search": "1.1.4",
"ytdl-core-discord": "1.2.3",
"ytpl": "1.0.1",
"zlib-sync": "0.1.7"
},
"devDependencies": {
"@types/json-schema": "7.0.6",
"@types/node": "14.10.1",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"eslint": "7.11.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"prettier": "2.1.2",
"prettier-plugin-organize-imports": "1.1.1",
"tsnodemon": "1.2.2",
"typescript": "4.0.3"
}
}