-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "dj-ino",
"version": "0.0.1",
"description": "Discord bot that can be used to play music in a voice channel",
"main": "index.js",
"engines": {
"node": "16.x"
},
"scripts": {
"start": "node dist/index.js",
"start:prod": "NODE_ENV=production node dist/index.js",
"deploy-commands": "node bin/deploy-commands.js",
"watch": "tsc -p tsconfig.json -w",
"build": "tsc -p tsconfig.json",
"build:dev": "docker build --build-arg ENV=DEV -t djinodev .",
"test:unit": "jest --coverage --config=jest.config.js",
"test:integration": "jest --coverage --config=jest.integration.config.js"
},
"author": "alpacamybags",
"license": "ISC",
"dependencies": {
"@alpacamybags118/yt-dlp-exec": "^0.1.0",
"@discordjs/voice": "^0.7.5",
"@types/node": "^17.0.10",
"discord.js": "^13.6.0",
"dotenv": "^14.2.0",
"ffmpeg-static": "^4.4.1",
"i": "^0.3.7",
"inversify": "^6.0.1",
"jest": "^27.4.7",
"libsodium-wrappers": "^0.7.9",
"node-fetch": "^2.6.7",
"npm": "^8.3.2",
"pino": "^7.6.4",
"pino-pretty": "^7.5.0",
"reflect-metadata": "^0.1.13",
"typescript": "^4.5.5"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@discordjs/rest": "^0.2.0-canary.0",
"@types/jest": "^27.4.0",
"@types/node-fetch": "^2.5.12",
"babel-jest": "^27.4.6",
"ts-jest": "^27.1.3",
"ts-mockito": "^2.6.1",
"ts-node": "^10.4.0"
}
}