-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
{
"name": "kwan_bot_v2",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^1.8.1",
"@discordjs/collection": "^2.1.0",
"@discordjs/rest": "^2.3.0",
"@discordjs/voice": "^0.17.0",
"@prisma/client": "^5.14.0",
"body-parser": "^1.20.2",
"bufferutil": "^4.0.8",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"discord-api-types": "^0.37.86",
"discord.js": "^14.15.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"morgan": "^1.10.0",
"os": "^0.1.2",
"path": "^0.12.7",
"poru": "^5.2.0",
"prisma": "^5.14.0",
"shoukaku": "^4.0.1",
"socket.io": "^4.7.5",
"systeminformation": "^5.22.10",
"utf-8-validate": "^6.0.4",
"ws": "^8.17.0",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-ws": "^3.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.12",
"@types/socket.io": "^3.0.2",
"@types/ws": "^8.5.10",
"nodemon": "^3.1.1",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "npx tsc",
"start": "node ./dist/index.js",
"start:shard": "node ./dist/shard.js",
"dev": "nodemon ./index.ts",
"prisma:migrate": "npx prisma migrate dev",
"prisma:studio": "npx prisma studio",
"clean-build": "rimraf dist",
"build:clean": "yarn clean-build && yarn build"
}
}