-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "emourge",
"version": "0.3.1",
"description": "Discord bot which determines which emoji to purge in a server.",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"format": "prettier --write src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfireBird/emourge.git"
},
"keywords": [
"discord",
"bot",
"emoji",
"server",
"typescript"
],
"author": "dfireBird",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfireBird/emourge/issues"
},
"homepage": "https://github.com/dfireBird/emourge#readme",
"devDependencies": {
"@types/mongoose": "^5.7.36",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"discord-akairo": "discord-akairo/discord-akairo",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"mongoose": "^5.9.24"
}
}