This repository was archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.14 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.14 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
{
"name": "phantom-knight-bot",
"version": "1.0.0",
"description": "A revamp of PhantomKnight bot in JavaScript",
"main": "index.js",
"scripts": {
"start:dev": "nodemon ./build/src/index.js",
"start:prod": "node ./build/src/index.js",
"build:dev": "tsc -p tsconfig.json --watch ",
"build:prod": "tsc -p tsconfig.json",
"format": "prettier --write .",
"server:dev": "nodemon ./build/src/web/server.js",
"server:prod": "node ./build/src/web/server.js",
"web:dev": "cd client && npm run dev",
"web:build": "cd client && npm run build",
"web:prod": "cd client && npm run start",
"generate": "prisma generate",
"push": "prisma db push"
},
"repository": {
"url": "https://github.com/PhantomKnight287/PhantomKnight",
"type": "git"
},
"bugs": {
"url": "https://github.com/PhantomKnight287/PhantomKnight/issues"
},
"author": "PhantomKnight287",
"license": "GPL-3.0",
"dependencies": {
"@discordjs/builders": "^1.1.0",
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "^1.0.1",
"@discordjs/voice": "^0.9.0",
"@prisma/client": "^3.12.0",
"@types/express": "^4.17.13",
"axios": "^0.27.2",
"canvacord": "^5.2.3",
"canvas": "^2.9.0",
"discord-api-types": "^0.32.1",
"discord-canvas": "^1.4.1",
"discord-image-generation": "^1.4.9",
"discord-player": "^5.2.2",
"discord.js": "^13.6.0",
"express": "^4.17.3",
"ffmpeg-static": "^5.0.0",
"jimp": "^0.16.1",
"libsodium-wrappers": "^0.7.9",
"opusscript": "^0.0.8",
"pretty-ms": "^7.0.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.5.1",
"topgg-autoposter": "^2.0.1",
"usetube": "^2.1.4",
"ytdl-core": "^4.10.1"
},
"devDependencies": {
"@types/node": "^17.0.25",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"nodemon": "^2.0.19",
"prettier": "2.6.2",
"prisma": "^3.12.0",
"typescript": "^4.6.2"
}
}