-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "tier-discord-bot",
"version": "1.0.16",
"description": "Just a Music & Chill Discord Bot",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/riflowth/tier-discord-bot.git"
},
"bugs": {
"url": "https://github.com/riflowth/tier-discord-bot/issues"
},
"scripts": {
"build:dev": "webpack --mode development --watch",
"build:prod": "webpack --mode production",
"build": "yarn run build:prod",
"dev": "npm-run-all --silent --parallel build:dev start:dev",
"start:dev": "nodemon dist/main.js -q -w dist/main.js",
"start:prod": "node dist/main.js",
"start": "yarn run start:prod",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/opus": "^0.7.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@discordjs/voice": "^0.8.0",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"dotenv": "^15.0.0",
"ffmpeg-static": "^4.4.1",
"libsodium-wrappers": "^0.7.9",
"play-dl": "^1.9.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-webpack-plugin": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"nodemon": "^2.0.12",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.5",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0",
"yarn-run-all": "^3.1.1"
}
}