This repository has been archived by the owner on Mar 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.67 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
46
47
48
49
{
"name": "aoba",
"description": "🚤 Discord bot to give you information from different documentation sites, push notifications in a Discord channel from different various sites",
"version": "1.0.0",
"main": "build/bot.js",
"license": "MIT",
"repository": "https://github.com/nowoel/Aoba",
"author": "Noel",
"scripts": {
"build:watch": "yarn lint && yarn clean && tsc -w",
"move:unix": "cp src/config.json build/config.json",
"move:win": "copy src/config.json build/config.json",
"compile": "tsc && echo \"Compiled TypeScript\"",
"build": "yarn lint && yarn clean && yarn compile && yarn move",
"clean": "rm -fr build && echo \"Cleaned the build directory\"",
"move": "yarn move:unix && echo \"Moved configuration files to the build directory\"",
"lint": "eslint src --ext .ts --fix && echo \"Linted the repository\""
},
"dependencies": {
"@augu/immutable": "0.1.6",
"@augu/sysinfo": "0.2.0",
"cheerio": "1.0.0-rc.3",
"common-tags": "1.8.0",
"eris": "0.11.2",
"feedparser": "2.2.9",
"ioredis": "4.16.0",
"leeks.js": "0.0.8",
"mongodb": "3.5.4",
"prom-client": "11.5.3",
"puppeteer": "2.1.1",
"twitch-webhook": "1.2.4"
},
"devDependencies": {
"@augu/eslint-config": "1.3.0",
"@types/cheerio": "0.22.16",
"@types/common-tags": "1.8.0",
"@types/feedparser": "2.2.3",
"@types/ioredis": "4.14.8",
"@types/mongodb": "3.5.2",
"@types/node": "13.7.7",
"@types/puppeteer": "2.0.1",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"eslint": "6.8.0",
"nodemon": "2.0.2",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
}
}