-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "ethstaker-discord-bot",
"version": "0.1.0",
"packageManager": "yarn@4.1.0",
"repository": "https://github.com/remyroy/ethstaker-discord-bot",
"author": "Rémy Roy <remyroy@remyroy.com>",
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"build": "yarn run gulp",
"start": "node dist/index.js",
"register-commands": "node dist/register-commands.js",
"test": "node dist/test.js"
},
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/rest": "^1.7.1",
"async-mutex": "^0.4.0",
"axios": "^1.4.0",
"bufferutil": "^4.0.7",
"discord-api-types": "^0.37.50",
"discord.js": "^14.11.0",
"dotenv": "^16.0.1",
"ethers": "^5.7.1",
"eventsource": "^2.0.2",
"luxon": "^3.2.1",
"seedrandom": "^3.0.5",
"sqlite3": "^5.1.6",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/eventsource": "^1.1.9",
"@types/luxon": "^3.2.0",
"@types/seedrandom": "^3.0.2",
"@types/sqlite3": "^3.1.8",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"typescript": "^4.8.3"
}
}