-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "lesebot",
"version": "0.6.1",
"description": "A (helpful) Discord bot",
"main": "./src/main.ts",
"repository": "https://github.com/lesesalen/lesebot",
"author": "Sondre Nilsen",
"license": "MIT",
"engines": {
"node": ">=16.6",
"npm": ">=8"
},
"scripts": {
"prebuild": "rm -rf dist/",
"build": "tsc",
"clean": "rm -rf dist/ .cache/ .coverage/",
"compile": "tsc --watch --incremental",
"dev": "node-dev --notify=false src/main.ts",
"start": "node dist/main.js",
"lint": "eslint --cache .",
"style": "prettier --check src"
},
"dependencies": {
"@discordjs/builders": "0.12.0",
"@discordjs/opus": "0.8.0",
"@discordjs/rest": "0.3.0",
"@discordjs/voice": "0.8.0",
"axios": "0.25.0",
"cheerio": "1.0.0-rc.9",
"date-fns": "2.28.0",
"discord-api-types": "0.26.1",
"discord.js": "13.6.0",
"dotenv": "14.3.2",
"ffmpeg-static": "4.4.1",
"libsodium-wrappers": "0.7.9",
"lodash": "4.17.21",
"winston": "3.5.0"
},
"devDependencies": {
"@types/cheerio": "0.22.30",
"@types/lodash": "4.14.178",
"@types/node": "17.0.12",
"@types/ws": "8.2.2",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"node-dev": "7.1.0",
"prettier": "2.5.1",
"prettier-eslint": "13.0.0",
"ts-node": "10.4.0",
"typescript": "4.5.5"
},
"optionalDependencies": {
"sodium": "3.0.2"
},
"volta": {
"node": "16.11.1",
"npm": "8.1.0"
}
}