-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·105 lines (105 loc) · 2.66 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "discord-stocker-bot",
"displayName": "Discord Stonker Bot",
"version": "3.4.3",
"description": "An advanced business-ready bot built for finance-related Discord servers",
"main": "./build/index.js",
"exports": "./build/index.js",
"type": "module",
"private": true,
"scripts": {
"start": "ts-node --esm src/index.ts",
"build": "npm-run-all -p build:*",
"build:tsc": "tsc --build",
"build:copyfiles": "copyfiles \"src/views/invites.ejs\" \"invites.ejs\" \"config.json\" build"
},
"types": "",
"repository": {
"type": "git",
"url": "git://github.com/mrjackyliang/discord-stonker-bot.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mrjackyliang"
},
{
"type": "custom",
"url": "https://liang.nyc/paypal"
}
],
"keywords": [
"discord",
"discord-bots",
"discord-roles",
"discord-automod",
"discord-invite-generator",
"discord-antiraid",
"discord-anti-scam",
"discord-threads",
"discord-event",
"stock-market",
"cryptocurrency",
"webhook-receiver",
"etherscan-api",
"finnhub-api",
"stocktwits-api",
"rss-feed-parser",
"message-copier",
"remove-ads",
"toggle-permissions",
"twitter-feed"
],
"author": {
"name": "Jacky Liang",
"email": "hello@mrjackyliang.com",
"url": "https://www.mrjackyliang.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjackyliang/discord-stonker-bot/issues"
},
"files": [],
"homepage": "https://github.com/mrjackyliang/discord-stonker-bot",
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "1.3.2",
"bottleneck": "2.19.5",
"chalk": "5.2.0",
"discord.js": "14.7.1",
"ejs": "3.1.8",
"express": "4.18.2",
"form-data": "4.0.0",
"html-entities": "2.3.3",
"latinize": "0.5.0",
"lodash": "4.17.21",
"luxon": "3.2.1",
"markdown-table": "3.0.3",
"node-cron": "3.0.2",
"numeral": "2.0.6",
"rss-parser": "3.12.0",
"serialize-error": "11.0.0",
"twitter-api-v2": "1.14.1"
},
"devDependencies": {
"@types/express": "4.17.17",
"@types/latinize": "0.2.15",
"@types/lodash": "4.14.191",
"@types/luxon": "3.2.0",
"@types/node-cron": "3.0.7",
"@types/numeral": "2.0.2",
"@types/xml2js": "0.4.11",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"copyfiles": "2.4.1",
"discord-api-types": "0.37.32",
"eslint": "8.34.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"npm-run-all": "4.1.5",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}