forked from Sayrix/Ticket-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.7 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
60
61
62
{
"name": "ticket-bot",
"version": "3.2.2",
"description": "Bot with a ticket system using Discord.js v14",
"main": "dist/index.js",
"scripts": {
"setup": "npm install && prisma db push",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"lint:fix": "eslint --fix . --ext .ts",
"lint:check": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sayrix/ticket-bot.git"
},
"keywords": [
"discord",
"ticket",
"bot"
],
"author": "Sayrix",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Sayrix/ticket-bot/issues"
},
"homepage": "https://github.com/Sayrix/ticket-bot#readme",
"dependencies": {
"@prisma/client": "^5.3.1",
"axios": "^1.5.0",
"better-sqlite3": "^8.6.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"jsonc": "^2.0.0",
"mongoose": "^7.5.2",
"readline": "^1.3.0",
"ticket-bot-transcript-uploader": "^1.3.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.5",
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.6.2",
"@types/pg": "^8.10.2",
"@types/websocket": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"prisma": "^5.3.1",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
}
}