-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.28 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "nodebot",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"engines": {
"node": ">=22.18"
},
"signale": {
"displayScope": true,
"displayBadge": true,
"displayDate": true,
"displayFilename": true,
"displayLabel": true,
"displayTimestamp": true,
"underlineLabel": true,
"underlineMessage": false,
"underlinePrefix": true,
"underlineSuffix": true,
"uppercaseLabel": true
},
"scripts": {
"start": "doppler run -- node build/index.js",
"run": "node build/index.js",
"build": "npm run db:generate && npm run type:locales && npx tsc",
"dev": "nodemon -e ts --exec \"npm start\"",
"tsc:watch": "nodemon -e ts --exec tsc",
"type:locales": "type-locales && if [ -f \"build/utils/testLocales.js\" ]; then node build/utils/testLocales.js; fi",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"yt:login": "node yt_login.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/voice": "0.18.0",
"@eliyya/sange": "github:Node-Estudios/sange",
"@prisma/client": "6.13.0",
"@sentry/cli": "2.51.0",
"@sentry/node": "^10.5.0",
"@sentry/profiling-node": "1.1.2",
"bindings": "1.5.0",
"cors": "2.8.5",
"datadog-metrics": "0.12.1",
"dd-trace": "4.55.0",
"discord-hybrid-sharding": "github:Node-Estudios/discord-hybrid-sharding#ts-rewrite",
"discord.js": "14.21.0",
"express": "5.1.0",
"figlet": "1.8.2",
"i18n": "0.15.1",
"jsonwebtoken": "9.0.2",
"moment": "2.30.1",
"sange": "github:Node-Estudios/sange",
"signale": "1.4.0",
"spotify-web-api-node": "^5.0.2",
"statcord.js": "3.4.3",
"stripe": "18.4.0",
"type-locales": "3.2.4",
"youtubei.js": "^15.0.1"
},
"devDependencies": {
"@eslint/js": "9.32.0",
"@eslint/json": "0.13.1",
"@eslint/markdown": "7.1.0",
"@types/cors": "2.8.19",
"@types/express": "5.0.3",
"@types/figlet": "1.7.0",
"@types/i18n": "0.13.12",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "24.2.0",
"@types/signale": "1.4.7",
"cmake-js": "7.3.1",
"concurrently": "9.2.0",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"globals": "16.3.0",
"nodemon": "3.1.10",
"prettier": "3.6.2",
"prisma": "6.13.0",
"transjson": "github:OnekiDevs/transjson#1187c4b",
"typescript": "5.9.2",
"typescript-eslint": "8.39.0"
},
"optionalDependencies": {
"bufferutil": "4.0.9",
"utf-8-validate": "6.0.5"
},
"imports": {
"#structures/*": "./build/structures/*",
"#utils/*": "./build/utils/*",
"#cache/*": "./build/cache/*",
"#prisma/client": "./build/prisma/client/client.js",
"#prisma/*": "./build/prisma/*",
"#env": "./build/env.js",
"#constants": "./build/constants.js"
},
"prisma": {
"schema": "src/prisma/schema.prisma",
"seed": ""
},
"type": "module"
}