-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
42 lines (42 loc) · 1014 Bytes
/
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": "anilist-discord-bot",
"version": "1.0.0",
"description": "Search for anime, manga, and more from AniList",
"author": "Josh Star",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --watch src src/index.js",
"lint": "eslint --ext .js src/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"discord.js": "^12.5.3",
"dotenv": "^6.2.0",
"graphql-request": "^1.8.2",
"striptags": "^3.1.1",
"turndown": "^5.0.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"nodemon": "^1.19.4",
"prettier": "^1.19.1"
}
}