-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
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
{
"name": "crim",
"version": "1.0.0",
"description": "The cute, multipurpose bot for Discord!",
"main": "dist/index.js",
"scripts": {
"build": "node_modules/.bin/tsc",
"start": "npm run build && node .",
"lint": "eslint \"src/**\" --fix",
"dev": "node_modules/.bin/concurrently \"node_modules/.bin/tsc -w\" \"nodemon ./dist/index.js\""
},
"engines": {
"node": "14.x"
},
"keywords": [],
"author": "Emy",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@lavacord/discord.js": "0.0.7",
"@log4js2/core": "^2.0.9",
"@typegoose/typegoose": "^7.6.3",
"anilist-node": "^1.9.1",
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.3",
"discordjs-richdisplay": "1Conan/discordjs-richdisplay",
"humanize-duration": "^3.27.0",
"kurasuta": "^2.2.3",
"mongoose": "^5.13.7",
"nekos.life": "^2.0.7",
"nhentai-js": "^3.3.0",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"sagiri": "^3.1.1",
"urban-dictionary": "^2.2.1"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^14.17.9",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"concurrently": "^5.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^3.9.10"
}
}