-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
131 lines (131 loc) · 4.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "reflectcord",
"version": "1.0.0",
"description": "",
"private": true,
"main": "./dist/start.js",
"scripts": {
"postinstall": "npx patch-package",
"start": "concurrently --kill-others \"npm run start:api\" \"npm run start:cdn\" \"npm run start:gateway\" \"npm run start:voice\"",
"build": "tsc",
"dev": "tsc -w",
"start:dev": "concurrently --kill-others \"npm run start:api:dev\" \"npm run start:cdn:dev\" \"npm run start:gateway:dev\" \"npm run start:voice:dev\"",
"start:tsnode": "tsx ./src/start.ts",
"start:api:dev": "nodemon ./src/api/start.ts --config nodemon.api.json",
"start:cdn:dev": "nodemon ./src/cdn/start.ts --config nodemon.cdn.json",
"start:gateway:dev": "nodemon ./src/gateway/start.ts --config nodemon.gateway.json",
"start:voice:dev": "nodemon ./src/voice/start.ts --config nodemon.voice.json",
"start:monolith:dev": "nodemon ./src/start.ts",
"start:api": "DIST=1 node ./dist/api/start.js",
"start:cdn": "DIST=1 node ./dist/cdn/start.js",
"start:gateway": "DIST=1 node ./dist/gateway/start.js",
"start:voice": "DIST=1 node ./dist/voice/start.js",
"start:monolith": "DIST=1 node ./dist/start.js",
"clean": "rimraf dist",
"lint": "eslint src/**/*.ts",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/express": "^2.3.0",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^7.6.0",
"@ffmpeg/core": "^0.12.2",
"@ffmpeg/ffmpeg": "^0.12.5",
"ajv": "^8.12.0",
"amqplib": "^0.10.3",
"axios": "^1.6.7",
"axios-rate-limit": "^1.3.0",
"bitfield": "^4.2.0",
"body-parser": "^1.20.1",
"concurrently": "^8.2.2",
"device-detector-js": "^3.0.3",
"discord-api-types": "^0.37.67",
"discord.js": "^14.14.1",
"dotenv": "^16.4.1",
"emojilib": "^3.0.11",
"erlpack": "^0.1.4",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-automatic-routes": "^1.1.0",
"express-fileupload": "^1.4.3",
"fast-zlib": "^2.0.1",
"fastify": "^4.15.0",
"fastify-autoroutes": "^3.0.2",
"ffmpeg-static": "^5.1.0",
"file-type": "^16.5.4",
"find-my-way": "github:V3L0C1T13S/find-my-way#dev/reflectcord",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"gifbox.js": "^0.9.0",
"gm": "^1.25.0",
"helmet": "^6.0.1",
"json-bigint": "^1.0.0",
"lodash": "^4.17.21",
"long": "^5.2.0",
"missing-native-js-functions": "^1.3.1",
"module-alias": "^2.2.2",
"mongodb": "^5.9.2",
"mongoose": "^7.6.8",
"morgan": "^1.10.0",
"msc-node": "^0.0.21",
"murmurhash-js": "^1.0.0",
"node-html-parser": "^6.1.12",
"nodejs-snowflake": "^2.0.1",
"protobufjs": "^7.2.6",
"rate-limiter-flexible": "^3.0.6",
"revolt-api": "^0.6.9",
"revolt.js": "https://github.com/V3L0C1T13S/revolt.js/releases/download/6.0.20.revite-backports.patch2/package.tgz",
"rfcNative": "github:V3L0C1T13S/rfcNative#76abf0f162c6515f9cb42702b6d5fea00bc305be",
"semantic-sdp": "^3.27.1",
"serve-favicon": "^2.5.0",
"sharp": "^0.33.2",
"tiny-typed-emitter": "^2.1.0",
"tslib": "^2.4.0",
"twitter-api-v2": "^1.16.0",
"ulid": "^2.3.0",
"unicode-emoji-json": "^0.4.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.1",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/gm": "^1.25.4",
"@types/json-bigint": "^1.0.4",
"@types/lodash": "^4.14.202",
"@types/morgan": "^1.9.9",
"@types/murmurhash-js": "^1.0.6",
"@types/node": "^20.10.3",
"@types/serve-favicon": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.1.2",
"nodemon": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"workspaces": [
"src/api",
"src/common",
"src/cdn",
"src/gateway",
"src/voice",
"src/evil"
],
"_moduleAliases": {
"@reflectcord/common": "./dist/common",
"@reflectcord/api": "./dist/api",
"@reflectcord/cdn": "./dist/cdn",
"@reflectcord/gateway": "./dist/gateway",
"@reflectcord/voice": "./dist/voice"
}
}