forked from PikaYuhno/email-notifier-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
50
51
{
"name": "email-notifier-bot",
"version": "1.0.0",
"description": "A discord bot that listen to new emails.",
"main": "src/index.ts",
"scripts": {
"start": "node dist/src/index.js",
"build": "tsc",
"dev": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PikaYuhno/email-notifier-bot.git"
},
"author": "PikaYuhno",
"license": "MIT",
"bugs": {
"url": "https://github.com/PikaYuhno/email-notifier-bot/issues"
},
"homepage": "https://github.com/PikaYuhno/email-notifier-bot#readme",
"dependencies": {
"discord.js": "^13.1.0",
"dotenv": "^8.0.0",
"mail-notifier": "^0.5.0",
"puppeteer": "^10.2.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"typescript": "^4.3.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/async": "^3.2.7",
"@types/dotenv": "^6.1.1",
"@types/imap": "^0.8.35",
"@types/mailparser": "^3.0.3",
"@types/node": "^12.7.3",
"@types/puppeteer": "^5.4.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"ts-node": "^10.2.0"
}
}