This repository was archived by the owner on Apr 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"name": "luke",
"version": "3.0.0",
"description": "Luke, multipurpose Discord bot.",
"main": "dist/index.js",
"repository": "https://github.com/Nimplex/Luke.git",
"author": "Nimplex",
"license": "GPL-3.0",
"private": false,
"scripts": {
"start": "node .",
"start:dev": "nodemon --ignore public . dev",
"build:ts": "tsc",
"build:sass": "sass public/scss/:public/css/",
"format": "prettier --config .prettierrc --write src"
},
"dependencies": {
"@discordjs/opus": "^0.5.0",
"bufferutil": "^4.0.3",
"chalk": "^4.1.0",
"dayjs": "^1.10.4",
"discord.js": "^12.5.1",
"erela.js": "^2.3.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"form-data": "^4.0.0",
"helmet": "^4.4.1",
"image-type": "^4.1.0",
"mongoose": "5.10.14",
"node-fetch": "^2.6.1",
"pug": "^3.0.0",
"serverline": "^1.5.0",
"utf-8-validate": "^5.0.4"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/express": "^4.17.11",
"@types/express-session": "1.17.0",
"@types/form-data": "^2.5.0",
"@types/helmet": "^4.0.0",
"@types/image-type": "^4.0.1",
"@types/mongoose": "5.10.1",
"@types/node": "^14.14.27",
"@types/node-fetch": "^2.5.8",
"@types/ws": "^7.4.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
}
}