forked from casperiv0/ghostybot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.57 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.57 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ghostybot",
"version": "1.0.0",
"description": "A Custom Discord bot with a lot of commands for Discord communities.",
"main": "src/index.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"format:quick": "pretty-quick --staged --pattern \"**/*.{js,jsx,ts,tsx,md,css,json}\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,css,json}\" --ignore-path .gitignore",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"start:ts": "ts-node -r tsconfig-paths/register src/index.ts",
"start": "tsc && BUILD_PATH=true DEV_MODE=false node ./dist/src/index.js",
"dev": "nodemon",
"build": "next build && next-sitemap",
"test:tsc": "tsc --noEmit",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/Dev-CasperTheGhost/ghostybot"
},
"bugs": {
"url": "https://github.com/Dev-CasperTheGhost/ghostybot/issues",
"email": "hello@caspertheghost.me"
},
"homepage": "https://github.com/Dev-CasperTheGhost/ghostybot#readme",
"keywords": [
"discord-bot",
"discord.js",
"discord-js"
],
"author": "Dev-CasperTheGhost",
"license": "MIT",
"dependencies": {
"@discord-player/extractor": "^3.0.0",
"@discordjs/opus": "^0.5.0",
"@iamtraction/google-translate": "^1.1.2",
"alexflipnote.js": "^2.5.0",
"bluebird": "^3.7.2",
"chalk": "^4.1.1",
"cows": "^2.1.1",
"cowsay": "^1.4.0",
"ctgs.js": "^1.1.0",
"dayjs": "^1.10.4",
"discord-giveaways": "4.5.1",
"discord-logs": "^1.9.0",
"discord-player": "4.0.8",
"discord-starboards": "2.2.3",
"discord.js": "github:discordjs/discord.js#master",
"dotenv": "^9.0.2",
"easy-games-js": "^1.2.1",
"eslint-plugin-react": "^7.23.2",
"ffmpeg": "0.0.4",
"figlet": "^1.5.0",
"glob": "^7.1.7",
"google-play-scraper": "^8.0.2",
"image-gen-discord": "^1.0.2",
"imdb-api": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"lyrics-finder": "^21.7.0",
"mathjs": "^9.3.2",
"mongoose": "^5.12.8",
"ms": "^2.1.3",
"nekos.life": "^2.0.7",
"next": "^10.2.0",
"next-pwa": "^5.2.21",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"nookies": "^2.5.2",
"nprogress": "^0.2.0",
"one-liner-joke": "^1.2.0",
"pastebin-api": "^1.0.5",
"preact": "^10.5.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"twemoji-parser": "^13.0.0",
"uuid": "^8.3.2",
"wikijs": "^6.2.0",
"word-definition": "^2.1.6"
},
"devDependencies": {
"@casper124578/eslint-config": "^0.0.12",
"@casper124578/eslint-config-next": "^0.0.1",
"@casper124578/eslint-config-react": "^0.0.4",
"@types/bluebird": "^3.5.34",
"@types/cheerio": "^0.22.28",
"@types/figlet": "^1.5.1",
"@types/glob": "^7.1.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/mathjs": "^6.0.12",
"@types/mongoose": "^5.10.5",
"@types/ms": "^0.7.31",
"@types/node": "^15.0.3",
"@types/node-fetch": "^2.5.10",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.5",
"@types/request": "^2.48.5",
"@types/twemoji-parser": "^12.1.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"discord-api-types": "^0.18.1",
"eslint": "^7.26.0",
"husky": "^6.0.0",
"next-sitemap": "^1.6.57",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4",
"zlib-sync": "^0.1.7"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 100,
"tabWidth": 2
}
}