-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "wordl-bot",
"version": "1.0.0",
"description": "Play Wordle with Friends",
"main": "src/index.js",
"scripts": {
"test": "jest --collectCoverage --detectOpenHandles --logHeapUsage --verbose",
"test:live": "jest --watch --logHeapUsage --verbose",
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"prepare": "husky install",
"lint": "eslint --cache --fix",
"prettier": "prettier --write \"src/**/*.js\"",
"prettier:check": "prettier --check \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/atikahe/wordl-bot.git"
},
"keywords": [
"wordle",
"discord",
"game"
],
"author": "Atikah",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/atikahe/wordl-bot/issues"
},
"homepage": "https://github.com/atikahe/wordl-bot#readme",
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"@keyv/mongo": "^2.1.0",
"@keyv/redis": "^2.2.3",
"discord-api-types": "^0.27.2",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"keyv": "^4.1.1",
"nodemon": "^2.0.15"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}