This repository has been archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.67 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
71
72
73
74
75
76
{
"name": "plexi",
"version": "5.6.0",
"description": "A general purpose discord bot",
"author": "Nigecat",
"repository": {
"type": "git",
"url": "https://github.com/Nigecat/Plexi.git"
},
"scripts": {
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc",
"build:watch": "tsc --watch",
"build:clean": "tsc --build --clean",
"build:docs": "npm run build && ts-node generateDocs.ts && typedoc --options typedoc.json",
"start": "npm run build && node -r dotenv/config index.js",
"start:dev": "docker-compose up --build",
"start:nobuild": "node -r dotenv/config index.js",
"tests": "npm run build:clean && mocha -r ts-node/register tests/**/*.test.ts",
"test": "npm run build && npm run tests && npm run lint",
"coverage": "nyc --reporter=html --reporter=text npm run tests -- --reporter min",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.16",
"@types/common-tags": "^1.8.0",
"@types/mathjs": "^6.0.11",
"@types/mocha": "^8.2.2",
"@types/mongoose": "^5.10.4",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.3.4",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rewire": "^5.0.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35"
},
"dependencies": {
"@discordjs/opus": "^0.5.0",
"@types/node": "^14.14.37",
"axios": "^0.21.1",
"common-tags": "^1.8.0",
"dblapi.js": "^2.4.1",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"ffmpeg-static": "^4.3.0",
"file-type": "^16.3.0",
"jimp": "^0.16.1",
"mathjs": "^9.3.2",
"mongoose": "^5.10.16",
"popyt": "^5.0.0",
"rpg-dice-roller": "^4.4.1",
"typescript": "^4.2.4",
"weather-js": "^2.0.0",
"winston": "^3.3.3",
"word-definition": "^2.1.6",
"ytdl-core-discord": "^1.3.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"erlpack": "github:discord/erlpack",
"libsodium-wrappers": "^0.7.9",
"utf-8-validate": "^5.0.4",
"zlib-sync": "^0.1.7"
}
}