forked from siddhu33/discordle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "discordle",
"version": "1.0.0",
"description": "Discord Bot to play wordle with the users",
"main": "index.js",
"scripts": {
"start": "npx nodemon bot.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siddhu33/discordle.git"
},
"engines": {
"node": "16.13.2",
"npm": "8.1.2"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/siddhu33/discordle/issues"
},
"homepage": "https://github.com/siddhu33/discordle#readme",
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/rest": "^0.2.0-canary.0",
"bufferutil": "^4.0.6",
"discord-api-types": "^0.26.1",
"discord.js": "^13.6.0",
"dotenv": "^11.0.0",
"erlpack": "discord/erlpack",
"nodemon": "^2.0.15",
"utf-8-validate": "^5.0.8"
},
"devDependencies": {
"@jest/globals": "^27.4.6",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7"
}
}