-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 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
47
48
49
50
51
52
53
54
{
"name": "ticket-bot",
"version": "1.0",
"description": "A discord.js bot to handle ticket creation",
"main": "dist/index.js",
"scripts": {
"start": "pnpm run build && node dist/index.js",
"build": "pnpm run clean && tsc -p tsconfig.json",
"clean": "rm -rf dist",
"watch": "tsc -p tsconfig.json -w",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts",
"format": "prettier --check --ignore-path .gitignore ./src/**/*.ts",
"format:fix": "prettier --write --ignore-path .gitignore ./src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KingsMMA/TicketBot.git"
},
"author": "KingsDev",
"bugs": {
"url": "https://github.com/KingsMMA/TicketBot/issues"
},
"homepage": "https://github.com/KingsMMA/TicketBot",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@tsconfig/node18": "^1.0.1",
"@types/express": "^4.17.16",
"@types/klaw": "^3.0.3",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^3.4.1",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.3.1",
"chalk": "^4.1.2",
"discord-api-types": "^0.37.31",
"discord-html-transcripts": "^3.2.0",
"discord.js": "^14.14.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"klaw": "^4.1.0",
"mongodb": "^5.0.0",
"rimraf": "^4.1.2"
}
}