generated from Cornayy/ts-discord-bot-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "zero-two",
"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/zero-two.git"
},
"author": "Cornayy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cornayy/zero-two/issues"
},
"homepage": "https://github.com/Cornayy/zero-two#readme",
"dependencies": {
"axios": "^0.20.0",
"cheerio": "^1.0.0-rc.3",
"discord.js": "^11.6.4",
"dotenv": "^8.2.0",
"mongoose": "^5.10.18",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.22",
"@types/dotenv": "^6.1.1",
"@types/mongoose": "^5.10.1",
"@types/node": "^12.19.7",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^1.19.1",
"typescript": "^3.9.7"
}
}