-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.89 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
52
53
54
55
56
57
58
59
{
"name": "bird-bot",
"version": "1.0.0",
"description": "Discord bot for the [Pterodactyl Installation Script Discord](https://pterodactyl-installer.se/discord) server!",
"main": "dist/index.js",
"scripts": {
"test": "tsc-watch --onCompilationComplete \"node dist/index.js\"",
"start": "node dist/index.js",
"configure": "node dist/setup.js",
"build": "rimraf dist/* && tsc",
"lint": "eslint \"src/**\""
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pterodactyl-installer/bird-bot.git"
},
"author": "Linux123123",
"license": "MIT",
"bugs": {
"url": "https://github.com/pterodactyl-installer/bird-bot/issues"
},
"homepage": "https://github.com/pterodactyl-installer/bird-bot#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"tsc-watch": "^4.4.0"
},
"dependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.9.0",
"@types/node-fetch": "^2.5.10",
"@types/readline-sync": "^1.4.3",
"@types/shortid": "^0.0.29",
"@types/valid-url": "^1.0.3",
"@types/ws": "^7.4.4",
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"enmap": "^5.8.5",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.2",
"shortid": "^2.2.16",
"tesseract.js": "^2.1.4",
"typescript": "^4.3.2",
"valid-url": "^1.0.9"
}
}