This repository has been archived by the owner on Apr 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 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
{
"name": "tobias",
"version": "2.0.0",
"description": "Discord Bot with multiple functions, which values above all, delivering quality!",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --exec node index.js",
"test": "mocha src/tests --recursive",
"fix": "standard --fix"
},
"engines": {
"node": ">=12"
},
"author": "Tobias Team",
"repository": "git+ssh://git@github.com/tobias-inc/TobiasRework.git",
"license": "ISC",
"keywords": [
"nodejs",
"javascript",
"discord-js",
"discord-bot",
"bot"
],
"nodemonConfig": {
"ignore": [
"locales/*"
]
},
"standard": {
"env": [
"mocha"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"ascii-table": "^0.0.9",
"canvas": "^2.6.1",
"chalk": "^4.1.0",
"cheerio-without-node-native": "^1.0.0-rc.2",
"cors": "^2.8.5",
"discord.js": "^12.5.1",
"discord.js-lavalink": "^2.2.2",
"dotenv": "^8.2.0",
"events": "^3.2.0",
"express": "^4.17.1",
"figlet": "^1.5.0",
"file-type": "^16.0.1",
"genius-lyrics-api": "^3.0.2",
"i18next": "^19.8.4",
"i18next-node-fs-backend": "^2.1.3",
"icecast-parser": "^3.2.1",
"intl": "^1.2.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"lyricist": "^2.2.2",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"mongoose": "^5.11.3",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"request": "^2.88.2",
"transform-props": "^1.0.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.2.1",
"mocha-standard": "^1.0.0",
"nodemon": "^2.0.6",
"standard": "^14.3.3"
}
}