-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "empress",
"version": "1.0.0",
"description": "A multipurpose Discord bot built on discord.js using TypeScript",
"main": "dist/bot.js",
"type": "module",
"scripts": {
"start": "node dist/bot.js",
"prestart": "npm run build",
"build": "rimraf dist && npx tsc",
"dev": "concurrently \"tsc -w\" \"nodemon dist/bot.js\"",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"format": "prettier --write '*/**/*.{js,jsx,ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SapphireDevs/discord.git"
},
"keywords": [
"discord",
"discordjs",
"typescript"
],
"author": "Ducko#7068",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/SapphireDevs/discord/issues"
},
"homepage": "https://github.com/SapphireDevs/discord#readme",
"devDependencies": {
"@types/ms": "^0.7.31",
"@types/node": "^20.4.1",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^6.4.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^3.0.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/node-imap": "^0.9.0",
"axios": "^1.4.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"chart.js": "^3.9.1",
"chartjs-node-canvas": "^4.1.6",
"chartjs-plugin-gradient": "^0.5.0",
"discord-html-transcripts": "^3.1.4",
"discord.js": "^14.12.1",
"dotenv": "^16.0.3",
"genius-lyrics": "^4.4.3",
"glob": "^10.3.3",
"mongoose": "^7.3.2",
"ms": "^2.1.3",
"musicard": "^1.3.5",
"node-fetch": "^3.3.1",
"node-imap": "^0.9.6",
"poru": "^4.2.1",
"poru-spotify": "^2.0.2"
}
}