forked from oldschoolgg/oldschoolbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.41 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
77
78
79
80
81
82
{
"scripts": {
"lint": "eslint \"{src,tests}/**/*.ts\" --fix",
"build": "yarn wipedist && tsc -p src",
"wipedist": "rimraf \"dist/\"",
"start": "yarn build && concurrently \"tsc -w -p src\" \"node dist/\"",
"test": "concurrently \"tsc -p src\" \"yarn test:lint\" \"yarn test:unit\"",
"test:lint": "eslint \"{src,tests}/**/*.ts\"",
"test:unit": "jest --coverage --maxWorkers=4",
"dev": "yarn wipedist && tsc -w -p src"
},
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@octokit/graphql": "^4.8.0",
"@prisma/client": "^3.9.2",
"@sapphire/discord-utilities": "^2.8.0",
"@sapphire/discord.js-utilities": "^3.0.0-next.600390f4.0",
"@sapphire/stopwatch": "^1.4.0",
"@sapphire/time-utilities": "^1.6.0",
"@sapphire/type": "^2.1.2",
"@sentry/node": "^6.17.9",
"@sinclair/typebox": "^0.12.9",
"bufferutil": "^4.0.6",
"canvas": "2.8.0",
"canvas-constructor": "^1.1.2",
"chart.js": "^3.7.0",
"chartjs-node-canvas": "^4.1.5",
"chartjs-plugin-datalabels": "^2.0.0",
"chokidar": "^3.5.3",
"discord.js": "github:gc/discord.js#fd4c015610e3c10d96c131b6e3e7e3ab78132dad",
"e": "^0.2.1",
"emoji-regex": "^9.2.2",
"fastify": "^3.25.1",
"fastify-cors": "^5.2.0",
"fastify-helmet": "^5.3.2",
"fastify-rate-limit": "^5.7.2",
"fastify-sensible": "^3.1.2",
"he": "^1.2.0",
"jwt-simple": "^0.5.6",
"klasa": "https://github.com/gc/klasa.git#99ee76765f6b6172254cbeb363c73f4305d43f36",
"klasa-decorators": "^0.0.1",
"mahoji": "^0.0.49",
"math-expression-evaluator": "^1.3.14",
"murmurhash": "^2.0.0",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.7",
"oldschooljs": "^2.1.22",
"p-queue": "^6.6.2",
"pg": "^8.7.3",
"piscina": "^3.2.0",
"random-js": "^2.1.0",
"rss-parser": "^3.12.0",
"table": "^6.8.0",
"twit": "^2.2.9",
"utf-8-validate": "^5.0.8",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@oldschoolgg/eslint-config": "^1.2.5",
"@types/he": "^1.1.2",
"@types/jest": "^26.0.24",
"@types/math-expression-evaluator": "^1.2.2",
"@types/node": "^14.18.12",
"@types/node-cron": "^3.0.1",
"@types/node-fetch": "^2.6.1",
"@types/pg": "^7.14.11",
"@types/table": "^6.3.2",
"@types/twit": "^2.2.30",
"concurrently": "^6.5.1",
"discord-api-types": "^0.25.2",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"prisma": "^3.9.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14.0"
}
}