-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.29 KB
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": "ticketbot",
"version": "1.0.0",
"description": "A Discord Ticket Bot",
"main": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"dev": "nodemon src/main.ts",
"build": "tsc -p .",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KQM-git/TicketBot.git"
},
"author": "Tibi",
"license": "ISC",
"bugs": {
"url": "https://github.com/KQM-git/TicketBot/issues"
},
"homepage": "https://github.com/KQM-git/TicketBot#readme",
"dependencies": {
"@prisma/client": "^6.19.3",
"adm-zip": "^0.6.0",
"discord-api-types": "0.38.52",
"discord.js": "^14.27.0",
"fs-extra": "^11.4.0",
"log4js": "^6.9.1",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.13.3",
"@types/node-fetch": "^2.6.13",
"@types/ws": "^8.18.1",
"eslint": "^10.8.0",
"globals": "^17.9.0",
"nodemon": "^3.1.14",
"prisma": "^6.19.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.66.0"
}
}