-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
88 lines (88 loc) · 2.45 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
{
"name": "tundrabot",
"version": "2.0.0",
"engines": {
"node": ">=16.9.0",
"npm": ">=7.19.1"
},
"description": "",
"main": "TundraBot.ts",
"scripts": {
"start": "node --env-file=.env dist/TundraBot.js",
"build": "npx tsc && npm run copy-files && npm run copy-files",
"copy-files": "copyfiles -u 1 \"src/dashboard/**/*.pug\" \"src/dashboard/assets/**/*\" dist/",
"dev": "ts-node-dev src/TundraBot.ts",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshuayuen99/tundrabot.git"
},
"author": "Joshua Yuen",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshuayuen99/tundrabot/issues"
},
"homepage": "https://github.com/joshuayuen99/tundrabot#readme",
"dependencies": {
"@babel/core": "^7.14.6",
"@discord-player/downloader": "^3.0.1",
"@discord-player/extractor": "^3.0.2",
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.9.0",
"aki-api": "^6.0.8",
"ascii-table": "0.0.9",
"assert": "^2.0.0",
"body-parser": "^1.19.0",
"bufferutil": "^4.0.3",
"chalk": "^4.1.1",
"common-tags": "^1.8.0",
"cookies": "^0.8.0",
"css-element-queries": "^1.2.3",
"d3": "^7.6.1",
"disco-oauth": "^4.2.7",
"discord-player": "^5.2.2",
"discord-together": "^1.3.3",
"discord.js": "^13.3.1",
"dotenv": "^16.0.1",
"express": "^4.17.3",
"ffmpeg": "^0.0.4",
"fuse.js": "^6.4.3",
"grapheme-splitter": "^1.0.4",
"he": "^1.2.0",
"jstransformer-markdown-it": "^3.0.0",
"libsodium-wrappers": "^0.7.9",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.35",
"mongoose": "^5.13.15",
"mongoose-sequence": "^5.3.0",
"node-fetch": "^2.6.1",
"node-gyp": "^5.1.1",
"node-opus": "^0.3.3",
"pug": "^3.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"utf-8-validate": "^5.0.5",
"youtube-search": "^1.1.6",
"youtube-sr": "^4.1.17",
"ytdl-core": "^4.11.0",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/cookies": "^0.7.7",
"@types/express": "^4.17.13",
"@types/node": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"copyfiles": "^2.4.1",
"eslint": "^7.14.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.6",
"prettier": "^2.4.1",
"sinon": "^9.2.1",
"ts-node-dev": "^1.1.6"
}
}