-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "college-notification-discord",
"version": "1.1.0",
"main": "index.js",
"author": "henricker <[email protected]>",
"license": "MIT",
"scripts": {
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"start:dev": "ts-node-dev src/index.ts",
"test": "jest --watchAll --verbose",
"test:ci": "jest --coverage --silent",
"build": "tsc",
"start": "node ./dist/src/index.js"
},
"devDependencies": {
"@types/imap": "^0.8.35",
"@types/imap-simple": "^4.2.5",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/html-to-text": "^8.1.0",
"@types/mailparser": "^3.4.0",
"discord.js": "^14.1.2",
"dotenv": "^16.0.1",
"html-to-text": "^8.2.1",
"imap-simple": "^5.1.0",
"mailparser": "^3.5.0"
}
}