This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.17 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
{
"name": "sc2-arcade-track-server",
"version": "0.1.0",
"private": true,
"engines": {
"node": "*"
},
"scripts": {
"clean": "rm -rf out/*",
"build": "rm -rf out/* && tsc -p ./",
"build:watch": "rm -rf out/* && tsc -watch -p ./",
"lint": "tslint -p .",
"nullchecks": "tsc -p tsconfig.strict.json",
"nullchecks:watch": "tsc -w -p tsconfig.strict.json"
},
"dependencies": {
"axios": "^0.19.2",
"axios-case-converter": "^0.6.0",
"bullmq": "^1.15.1",
"commander": "^6.0.0",
"common-tags": "^1.8.0",
"csv-parse": "^4.14.2",
"date-fns": "^2.14.0",
"deep-equal": "^2.0.3",
"discord.js": "^12.5.3",
"discord.js-commando": "^0.12.3",
"dotenv": "^8.2.0",
"fast-glob": "^3.1.1",
"fast-xml-parser": "^3.17.4",
"fastify": "~3.4.1",
"fastify-cors": "^4.1.0",
"fastify-oas": "^3.0.3",
"fastify-plugin": "^2.3.4",
"fastify-rate-limit": "^4.0.2",
"fastify-static": "^3.2.0",
"fs-extra": "^9.0.1",
"he": "^1.2.0",
"ioredis": "^4.24.3",
"mysql2": "^2.1.0",
"p-map": "^4.0.0",
"p-queue": "^6.6.0",
"p-retry": "^4.2.0",
"snakecase-keys": "^3.2.0",
"sqlite": "^2.9.3",
"sugar": "^2.0.6",
"tiny-lru": "7.0.6",
"typeorm": "0.2.28",
"typeorm-naming-strategies": "2.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"ws": "^7.2.1"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/deep-equal": "^1.0.1",
"@types/dotenv": "^8.2.0",
"@types/fs-extra": "^9.0.1",
"@types/he": "^1.1.1",
"@types/ioredis": "^4.22.1",
"@types/jest": "^25.2.1",
"@types/node": "^13.1.8",
"@types/ws": "^7.2.0",
"jest": "^25.4.0",
"ts-jest": "^25.4.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"bufferutil": "^4.0.1",
"erlpack": "^0.1.3",
"utf-8-validate": "^5.0.2",
"zlib-sync": "^0.1.6"
}
}