This repository was archived by the owner on Oct 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 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
{
"name": "nerobot",
"version": "1.0.0",
"description": "A moderation bot for Discord's Hack Week",
"main": "dist/src/main.js",
"repository": "https://github.com/test137E29B/DiscordHackweek-NeroBot",
"contributors": [
"João Pedro (https://jpsl.dev/)",
"Jason"
],
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint --ext ts src --fix",
"test:lint": "eslint --ext ts src",
"build": "tsc -p . --skipLibCheck",
"watch": "tsc -p . -w",
"start": "node dist/src/main.js",
"dev": "rm -rf dist && yarn run build && yarn run start",
"fix-deps": "yarn add discordjs/discord.js dirigeants/klasa"
},
"dependencies": {
"@kcp/functions": "^1.0.0",
"discord.js": "discordjs/discord.js",
"klasa": "dirigeants/klasa",
"klasa-dashboard-hooks": "dirigeants/klasa-dashboard-hooks",
"klasa-member-gateway": "dirigeants/klasa-member-gateway",
"mongodb": "^3.2.7",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/node": "^12.0.7",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-klasa": "dirigeants/klasa-lint",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
}
}