-
-
Notifications
You must be signed in to change notification settings - Fork 261
/
package.json
63 lines (63 loc) · 1.74 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
63
{
"name": "ticket-bot",
"version": "3.3.1",
"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.4.2",
"axios": "^1.5.1",
"better-sqlite3": "^9.0.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"jsonc": "^2.0.0",
"mongoose": "^8.0.3",
"readline": "^1.3.0",
"ticket-bot-transcript-uploader": "^1.4.2-hotfix",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.5",
"@types/fs-extra": "^11.0.3",
"@types/node": "^22.7.5",
"@types/pg": "^8.10.7",
"@types/websocket": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^8.51.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",
"prettier-eslint": "^16.3.0",
"prisma": "^5.4.1",
"rimraf": "^6.0.1",
"typescript": "^5.4.5"
}
}