-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "portal",
"author": "Ioannis Tsiakkas",
"version": "0.7.0",
"type": "module",
"private": true,
"main": "src/app.ts",
"scripts": {
"build": "npx tsc",
"start": "node build/app.js",
"build-start": "npx tsc && node build/app.js",
"lint": "eslint --ext .ts .",
"lint-fix": "npm run lint -- --fix",
"dev": "tsc --watch"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@discordjs/opus": "0.9.0",
"@discordjs/voice": "0.17.0",
"@types/jsonfile": "6.1.4",
"cheerio": "1.0.0-rc.12",
"core-util-is": "1.0.3",
"dayjs": "1.11.13",
"discord-ytdl-core": "5.0.4",
"discord.js": "14.16.3",
"dotenv": "16.4.5",
"ffmpeg-static": "5.2.0",
"jsonfile": "6.1.0",
"libsodium-wrappers": "^0.7.15",
"lodash": "4.17.21",
"mongoose": "8.8.0",
"optionator": "0.9.4",
"opusscript": "0.1.1",
"roll": "1.3.2",
"voca": "1.4.1",
"winston": "3.16.0",
"yt-search": "2.12.1",
"ytdl-core": "4.11.5"
},
"devDependencies": {
"@types/lodash": "4.14.197",
"@types/node": "20.5.7",
"@types/node-fetch": "2.6.11",
"@types/roll": "1.2.3",
"@types/voca": "1.4.6",
"@types/ws": "8.5.13",
"@types/yt-search": "2.10.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"nodemon": "3.1.7",
"prettier-plugin-organize-imports": "^3.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "5.6.3"
},
"optionalDependencies": {
"fsevents": "2.3.3"
}
}