This repository has been archived by the owner on Jan 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.94 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
66
67
68
69
70
{
"name": "bort",
"version": "0.0.1",
"description": "Version 2 of bort in Typescript yeet. If you would like to view the current version: [here you go](https://github.com/MatievisTheKat/bort/tree/master)",
"main": "src/index.js",
"scripts": {
"start": "./bin/start",
"_install": "./bin/install",
"clean": "./bin/clean",
"build": "./bin/build",
"docgen": "typedoc --theme minimal --out ./docs --readme README.md",
"rebuild": "npm run clean $1 && npm run _install $1 && npm run build $1",
"test": "tsc && rm -rf dist",
"lint": "eslint"
},
"author": "Matthew Stead <[email protected]>",
"license": "EPL-2.0",
"dependencies": {
"chalk": "^4.0.0",
"cors": "^2.8.5",
"discord.js": "^12.3.1",
"ejs": "^3.1.5",
"express": "^4.17.1",
"moment": "^2.28.0",
"mongoose": "^5.10.5",
"morgan": "^1.10.0",
"ms": "^2.1.2",
"node-opus": "^0.3.3",
"opusscript": "0.0.7",
"query-string": "^6.13.2",
"simple-youtube-api": "^5.2.1",
"ytdl-core": "^3.2.2"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.8",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.1",
"@types/ms": "^0.7.31",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.9.1",
"coveralls": "^3.1.0",
"eslint": "^7.9.0",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.3.0",
"typescript": "^4.0.2"
},
"husky": {
"pre-commit": "npm test && npm run lint",
"pre-push": "npm test && npm run lint"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatievisTheKat/bort.git"
},
"keywords": [
"bot",
"bort",
"discord.js"
],
"bugs": {
"url": "https://github.com/MatievisTheKat/bort/issues"
},
"homepage": "https://github.com/MatievisTheKat/bort#readme"
}