forked from oldschoolgg/oldschoolbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.95 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
{
"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": "tsc -p src && yarn test:lint && yarn test:unit",
"test:lint": "eslint \"{src,tests}/**/*.ts\"",
"test:unit": "jest --coverage",
"dev": "yarn wipedist && tsc -w -p src"
},
"dependencies": {
"@kcp/tags": "1.0.0",
"@octokit/graphql": "^4.6.4",
"@sapphire/discord-utilities": "^2.1.3",
"@sapphire/time-utilities": "^1.3.3",
"@sentry/node": "5.20.1",
"@sinclair/typebox": "^0.12.9",
"bufferutil": "^4.0.3",
"canvas": "^2.8.0",
"canvas-constructor": "^1.1.2",
"chokidar": "^3.5.2",
"discord.js": "^12.5.3",
"e": "^0.2.1",
"emoji-regex": "^9.2.2",
"fastify": "^3.18.0",
"fastify-cors": "^5.2.0",
"fastify-helmet": "^5.3.1",
"fastify-rate-limit": "^5.5.0",
"fastify-sensible": "^3.1.1",
"he": "^1.2.0",
"jwt-simple": "^0.5.6",
"klasa": "github:gc/klasa#b7851bbb43a9130353cef990817ff39e91202547",
"klasa-decorators": "^0.0.1",
"node-fetch": "^2.6.1",
"oldschooljs": "^1.9.3",
"p-queue": "^6.6.2",
"pg": "^8.6.0",
"piscina": "^3.1.0",
"random-js": "^2.1.0",
"reflect-metadata": "^0.1.13",
"rss-parser": "^3.12.0",
"snoostorm": "^1.5.2",
"snoowrap": "github:gc/snoowrap#master",
"table": "^6.7.1",
"ts-toolbelt": "^8.0.7",
"twit": "^2.2.9",
"typeorm": "^0.2.34",
"utf-8-validate": "^5.0.5",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@oldschoolgg/eslint-config": "^1.2.2",
"@types/he": "^1.1.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.41",
"@types/node-fetch": "^2.5.10",
"@types/pg": "^7.14.11",
"@types/table": "^6.3.2",
"@types/twit": "^2.2.29",
"concurrently": "^5.3.0",
"eslint": "^7.29.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"typescript": "^4.3.4"
},
"engines": {
"node": ">=14.0"
}
}