-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.59 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "daves-disco",
"description": "Discord Bot focused on music streaming",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/ebma/daves-disco"
},
"keywords": [
"discord",
"discord-bot",
"discord.js",
"music-bot"
],
"author": "Marcel Ebert",
"license": "MIT",
"bugs": {
"url": "https://github.com/ebma/daves-disco/issues"
},
"homepage": "https://github.com/ebma/daves-disco#readme",
"main": "src/index.js",
"scripts": {
"clear-cache": "rm -rf ./dist",
"precommit": "lint-staged",
"start": "npm run build-and-run",
"serve": "node dist/index.js",
"build-and-run": "npm run build && npm run serve",
"build": "npm run build-ts && npm run lint",
"build-ts": "tsc",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon dist/index.js",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w",
"test": "jest --forceExit --coverage --verbose",
"lint": "tsc --noEmit && tslint \"**/*.{ts}\" --quiet --fix",
"debug": "npm run clear-cache && npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"dependencies": {
"@apollo/server": "^4.9.3",
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"@distube/ytdl-core": "^4.13.5",
"@sentry/node": "^5.15.5",
"async": "^3.2.4",
"body-parser": "^1.20.2",
"bufferutil": "^4.0.7",
"cors": "^2.8.5",
"discord-akairo": "https://github.com/discord-akairo/discord-akairo",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"ffmpeg-static": "^5.1.0",
"fs": "^0.0.1-security",
"graphql": "^16.6.0",
"graphql-compose": "^9.0.10",
"graphql-compose-mongoose": "^9.8.0",
"https-proxy-agent": "^6.1.0",
"jsonwebtoken": "^9.0.0",
"libsodium-wrappers": "^0.7.11",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^7.1.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"rxjs": "^7.8.1",
"socket.io": "^4.6.1",
"socketio-jwt": "^4.6.2",
"spotify-web-api-node": "^5.0.2",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"ytpl": "^2.3.0",
"ytsr": "^3.8.4"
},
"devDependencies": {
"@types/async": "^3.0.1",
"@types/body-parser": "^1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.3.8",
"@types/libsodium-wrappers": "^0",
"@types/lodash": "^4.14.138",
"@types/mongoose": "^5.7.8",
"@types/node": "^12.7.3",
"@types/request": "^2.48.2",
"@types/socket.io": "^2.1.2",
"@types/socketio-jwt": "0.0.0",
"@types/spotify-web-api-node": "^4.0.2",
"@types/uuid": "^8.3.0",
"concurrently": "^8.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,css,md}": [
"prettier --write",
"git add"
]
},
"packageManager": "yarn@3.6.0"
}