-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 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
53
54
55
56
{
"name": "discordgamelinter",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Mohamed Belkamel",
"license": "AGPL-3.0",
"private": true,
"types": "src/@types",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/rest": "^1.7.0",
"@discordjs/voice": "^0.16.0",
"@sentry/node": "^6.3.4",
"@sentry/tracing": "^6.3.4",
"@types/winston": "^2.4.4",
"axios": "^0.21.1",
"discord-api-types": "^0.37.37",
"discord.js": ">=12.5.1",
"dotenv": "^10.0.0",
"glob": "^9.3.4",
"libsodium-wrappers": "^0.7.11",
"lodash": "^4.17.20",
"lyrics-parse": "^1.1.0",
"qs": "^6.9.4",
"redis": "^3.0.2",
"winston": "^3.8.2",
"ytdl-core": "^4.9.0",
"ytdl-core-discord": "^1.3.1",
"ytpl": "^2.0.4",
"ytsr": "^3.8.1"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"@types/glob": "^8.1.0",
"@types/ioredis-mock": "^8.2.1",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.167",
"@types/qs": "^6.9.5",
"@types/redis": "^2.8.28",
"@types/validator": "^13.1.2",
"depcheck": "^1.4.3",
"ioredis-mock": "^8.4.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^4.2.4"
},
"engines": {
"node": ">16"
},
"scripts": {
"start": "node .",
"prestart": "yarn run build",
"build": "tsc -p .",
"test": "jest"
}
}