-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "discord-find-games-discord-bot",
"version": "1.0.0",
"description": "Discord bot helping people find other people looking to play video games.",
"main": "botStart.js",
"engines" :
{
"node": "16.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node deploy.js && node botStart.js "
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikito755/discord-find-games-discord-bot.git"
},
"author": "vik-ing",
"license": "ISC",
"bugs": {
"url": "https://github.com/vikito755/discord-find-games-discord-bot/issues"
},
"homepage": "https://github.com/vikito755/discord-find-games-discord-bot#readme",
"dependencies": {
"@discordjs/builders": "^0.9.0",
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.20.2",
"discord.js": "^13.3.1"
},
"devDependencies": {
"eslint": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2"
}
}