-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
64
65
66
67
68
{
"name": "ticket-system",
"type": "module",
"main": "build/index.js",
"scripts": {
"build:dev": "tsc --noEmit && echo ✔ Ok",
"build": "tsc",
"dev": "tsx --env-file .env ./src/index.ts",
"dev:dev": "tsx --env-file .env.development ./src/index.ts",
"watch": "tsx --watch --env-file .env ./src/index.ts",
"watch:dev": "tsx --watch --env-file .env.development ./src/index.ts",
"start": "node --env-file .env ./build/index.js",
"start:dev": "node --env-file .env.development ./build/index.js"
},
"dependencies": {
"@magicyan/discord": "^1.1.3",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"discord-html-transcripts": "^3.2.0",
"discord.js": "^14.15.3",
"fast-glob": "^3.3.2",
"mongoose": "^8.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"imports": {
"#database": [
"./build/database/index.js"
],
"#base": [
"./build/discord/base/index.js"
],
"#functions": [
"./build/functions/index.js"
],
"#menus": [
"./build/menus/index.js"
],
"#settings": [
"./build/settings/index.js"
],
"#tools": [
"./build/tools/index.js"
],
"#server": [
"./build/server/index.js"
],
"#lang/*": [
"./lang/*"
],
"#responses": [
"./build/lib/responses.js"
],
"#emojis": [
"./build/lib/emojis.js"
],
"#protocol": [
"./build/lib/protocol.js"
]
}
}