-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "ts-discord-bot-boilerplate",
"version": "1.0.0",
"description": "A TypeScript Discord bot.",
"main": "src/index.ts",
"scripts": {
"start": "tsc && node dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cornayy/ts-discord-bot-boilerplate.git"
},
"author": "Cornayy",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cornayy/ts-discord-bot-boilerplate/issues"
},
"homepage": "https://github.com/Cornayy/ts-discord-bot-boilerplate#readme",
"dependencies": {
"discord.js": "^12.3.1",
"dotenv": "^8.0.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"typescript": "^3.6.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^12.7.3",
"@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"
}
}