-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.09 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
{
"name": "deej",
"version": "1.0.0",
"description": "A DeeJ for your Discord parties.",
"author": "Lorenzo Carneli",
"repository": "https://github.com/MrZalTy/deej",
"license": "MIT",
"private": true,
"main": "src/main.ts",
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"start": "ts-node src/main",
"start:dev": "ts-node-dev --respawn src/main",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.{js,ts}\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.{js,ts}\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config test/jest-e2e.config.ts",
"test:e2e:watch": "jest --config test/jest-e2e.config.ts --watch",
"test:e2e:cov": "jest --config test/jest-e2e.config.ts --coverage",
"test:e2e:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --config test/jest-e2e.config.ts --runInBand"
},
"dependencies": {
"discord-player": "^5.3.2",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"env-var": "^7.3.0",
"ffmpeg-static": "^5.1.0",
"opusscript": "^0.0.8",
"soundcloud-scraper": "5.x",
"spotify-url-info": "3.x",
"winston": "^3.8.2",
"youtube-sr": "4.x",
"ytdl-core": "4.x"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.3"
}
}