Newer
Older
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
{
"name": "@rocket.chat/meteor",
"description": "The Ultimate Open Source WebChat Platform",
"version": "4.7.0-develop",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"keywords": [
"rocketchat",
"rocket",
"chat"
],
"scripts": {
"start": "meteor",
"build": "meteor build --server-only",
"dev": "meteor",
"ha": "meteor npm run ha:start",
"ha:start": "ts-node .scripts/run-ha.ts main",
"ha:add": "ts-node .scripts/run-ha.ts instance",
"migration:add": "ts-node-transpile-only --skip-project .scripts/make-migration.ts",
"debug": "meteor run --inspect",
"debug-brk": "meteor run --inspect-brk",
"lint": "meteor npm run stylelint && meteor npm run eslint",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"eslint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"stylelint": "stylelint \"app/**/*.css\" \"client/**/*.css\" \"app/**/*.less\" \"client/**/*.less\" \"ee/**/*.less\"",
"stylelint:fix": "stylelint --fix \"app/**/*.css\" \"client/**/*.css\" \"app/**/*.less\" \"client/**/*.less\" \"ee/**/*.less\"",
"typecheck": "NODE_OPTIONS=\"--max-old-space-size=4092\" tsc --noEmit --skipLibCheck",
"deploy": "npm run build && pm2 startOrRestart pm2.json",
"coverage": "nyc -r html mocha --config ./.mocharc.js",
"testci": "node .scripts/start.js",
"testui": "cypress run",
"testui-pass": "cypress run --spec ./tests/cypress/integration/01-pass/**/*.spec.js",
"testui-intermittent": "cypress run --spec ./tests/cypress/integration/02-intermittent/**/*.spec.js",
"testui-skip": "cypress run --spec ./tests/cypress/integration/03-skip/**/*.spec.js",
"testapi": "mocha --config ./.mocharc.api.js",
"testunit": "npm run .testunit:definition && npm run .testunit:client && npm run .testunit:server",
".testunit:server": "mocha --config ./.mocharc.js",
".testunit:client": "mocha --config ./.mocharc.client.js",
".testunit:definition": "mocha --config ./.mocharc.definition.js",
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
"testunit-watch": "mocha --watch --config ./.mocharc.js",
"test": "npm run testapi && npm run testui",
"translation-diff": "node .scripts/translationDiff.js",
"translation-check": "node .scripts/check-i18n.js",
"translation-fix-order": "node .scripts/fix-i18n.js",
"version": "node .scripts/version.js",
"set-version": "node .scripts/set-version.js",
"release": "meteor npm run set-version --silent",
"storybook": "cross-env NODE_OPTIONS=--max-old-space-size=8192 start-storybook -p 6006"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RocketChat/Rocket.Chat.git"
},
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat/issues",
"email": "support@rocket.chat"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.14.5",
"@rocket.chat/eslint-config": "^0.4.0",
"@rocket.chat/livechat": "^1.12.2",
"@settlin/spacebars-loader": "^1.0.9",
"@storybook/addon-essentials": "~6.4.19",
"@storybook/addon-interactions": "~6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "~6.4.19",
"@storybook/react": "~6.4.19",
"@storybook/testing-library": "0.0.9",
"@testing-library/react": "~12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/adm-zip": "^0.4.34",
"@types/agenda": "^2.0.9",
"@types/bad-words": "^3.0.1",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.22",
"@types/chai-datetime": "0.0.37",
"@types/chai-dom": "0.0.11",
"@types/chai-spies": "^1.0.3",
"@types/clipboard": "^2.0.7",
"@types/cookie-parser": "^1.4.2",
"@types/dompurify": "^2.2.2",
"@types/ejson": "^2.1.3",
"@types/express": "^4.17.12",
"@types/fibers": "^3.1.1",
"@types/google-libphonenumber": "^7.4.21",
"@types/imap": "^0.8.35",
"@types/jsdom": "^16.2.12",
"@types/jsdom-global": "^3.0.2",
"@types/jsrsasign": "^9.0.3",
"@types/ldapjs": "^2.2.1",
"@types/less": "^3.0.2",
"@types/lodash.get": "^4.4.6",
"@types/mailparser": "^3.4.0",
"@types/marked": "^1.2.2",
"@types/meteor": "1.4.81",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^8.2.3",
"@types/mock-require": "^2.0.1",
"@types/moment-timezone": "^0.5.30",
"@types/mongodb": "^3.6.10",
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
"@types/node-rsa": "^1.1.1",
"@types/nodemailer": "^6.4.4",
"@types/parseurl": "^1.3.1",
"@types/photoswipe": "^4.1.2",
"@types/psl": "^1.1.0",
"@types/react": "~17.0.42",
"@types/react-dom": "~17.0.14",
"@types/rewire": "^2.5.28",
"@types/semver": "^7.3.6",
"@types/sharp": "^0.29.4",
"@types/string-strip-html": "^5.0.0",
"@types/supertest": "^2.0.11",
"@types/toastr": "^2.1.39",
"@types/ua-parser-js": "^0.7.36",
"@types/underscore.string": "0.0.38",
"@types/use-subscription": "^1.0.0",
"@types/uuid": "^8.3.1",
"@types/xml-crypto": "^1.4.1",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^3.0.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-array-includes": "^2.0.3",
"chai": "^4.3.4",
"chai-datetime": "^1.8.0",
"chai-dom": "^1.10.0",
"chai-spies": "^1.0.0",
"cross-env": "^7.0.3",
"cypress": "^7.6.0",
"emojione-assets": "^4.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.0.0",
"fast-glob": "^3.2.5",
"i18next": "^20.3.2",
"jsdom-global": "^3.0.2",
"mocha": "^9.1.3",
"mock-require": "^3.0.3",
"outdent": "~0.8.0",
"pino-pretty": "^7.6.0",
"postcss": "^8.3.5",
"postcss-custom-properties": "^11.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-load-config": "^3.1.0",
"postcss-media-minmax": "^5.0.0",
"postcss-nested": "^5.0.5",
"postcss-url": "^10.1.3",
"prettier": "2.5.1",
"rewire": "^5.0.0",
"source-map": "^0.5.7",
"stylelint": "^13.13.1",
"stylelint-order": "^4.1.0",
"supertest": "^6.1.6",
"template-file": "^6.0.1",
"ts-node": "^10.0.0",
"typescript": "~4.3.4",
"webpack": "^4.44.1"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@bugsnag/js": "^7.11.0",
"@google-cloud/language": "^3.8.0",
"@google-cloud/storage": "^2.5.0",
"@nivo/bar": "0.73.1",
"@nivo/core": "0.73.0",
"@nivo/heatmap": "0.73.0",
"@nivo/line": "0.62.0",
"@nivo/pie": "0.73.0",
"@rocket.chat/apps-engine": "^1.31.0",
"@rocket.chat/css-in-js": "~0.31.9",
"@rocket.chat/emitter": "~0.31.9",
"@rocket.chat/fuselage": "0.32.0-dev.9",
"@rocket.chat/fuselage-hooks": "~0.31.9",
"@rocket.chat/fuselage-polyfills": "~0.31.9",
"@rocket.chat/fuselage-tokens": "~0.31.9",
"@rocket.chat/fuselage-ui-kit": "~0.31.9",
"@rocket.chat/icons": "~0.31.9",
"@rocket.chat/logo": "~0.31.9",
"@rocket.chat/memo": "~0.31.9",
"@rocket.chat/message-parser": "~0.31.9",
"@rocket.chat/mp3-encoder": "^0.24.0",
"@rocket.chat/string-helpers": "~0.31.9",
"@rocket.chat/ui-kit": "~0.31.9",
"@slack/client": "^4.12.0",
"@types/cookie": "^0.4.1",
"@types/lodash": "^4.14.177",
"@types/lodash.debounce": "^4.0.6",
"@types/proxy-from-env": "^1.0.1",
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
"adm-zip": "0.5.9",
"agenda": "github:RocketChat/agenda#3.1.2",
"ajv": "^8.7.1",
"apn": "2.2.0",
"archiver": "^3.1.1",
"asterisk-manager": "^0.2.0",
"atlassian-crowd-patched": "^0.5.1",
"autolinker": "^3.14.3",
"aws-sdk": "^2.735.0",
"bad-words": "^3.0.4",
"bcrypt": "^5.0.1",
"blockstack": "19.3.0",
"body-parser": "1.19.2",
"bson": "^4.5.1",
"busboy": "^0.3.1",
"bytebuffer": "5.0.1",
"cas": "https://github.com/kcbanner/node-cas/tarball/fcd27dad333223b3b75a048bce27973fb3ca0f62",
"change-case": "^4.1.2",
"chart.js": "^2.9.3",
"clipboard": "^2.0.8",
"codemirror": "^5.62.0",
"colorette": "^1.3.0",
"connect": "^3.7.0",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"css-vars-ponyfill": "^2.4.7",
"csv-parse": "^4.16.3",
"cypress-real-events": "^1.7.0",
"cypress-wait-until": "^1.7.2",
"date-fns": "^2.28.0",
"dompurify": "^2.2.9",
"ejson": "^2.2.2",
"emailreplyparser": "^0.0.5",
"emojione": "^4.5.0",
"eslint-plugin-anti-trojan-source": "^1.1.0",
"eventemitter3": "^4.0.7",
"exif-be-gone": "^1.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"fflate": "^0.7.1",
"fibers": "^5.0.1",
"file-type": "^10.11.0",
"filenamify": "^4.3.0",
"filesize": "^3.6.1",
"google-libphonenumber": "^3.2.25",
"googleapis": "^25.0.0",
"grapheme-splitter": "^1.0.4",
"gridfs-stream": "^1.1.1",
"he": "^1.2.0",
"highlight.js": "^9.18.5",
"http-proxy-agent": "^5.0.0",
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
"i18next-http-backend": "^1.3.1",
"iconv-lite": "^0.6.3",
"image-size": "^1.0.0",
"imap": "^0.8.19",
"ip-range-check": "^0.2.0",
"is-svg": "^4.3.2",
"jquery": "^3.5.1",
"jschardet": "^3.0.0",
"jsdom": "^16.6.0",
"jsrsasign": "^10.4.0",
"juice": "^8.0.0",
"katex": "^0.11.1",
"ldap-escape": "^2.0.5",
"ldapjs": "^2.3.1",
"less": "https://github.com/meteor/less.js/tarball/8130849eb3d7f0ecf0ca8d0af7c4207b0442e3f6",
"less-plugin-autoprefixer": "^2.1.0",
"limax": "^3.0.0",
"localforage": "^1.9.0",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"mailparser": "^3.4.0",
"marked": "^0.7.0",
"mem": "^8.1.1",
"meteor-node-stubs": "^1.1.0",
"mime-db": "^1.48.0",
"mime-type": "^3.1.0",
"mkdirp": "^0.5.5",
"moleculer": "^0.14.19",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mongodb": "^3.6.10",
"mongodb-memory-server": "^7.4.1",
"nats": "^2.4.0",
"node-dogstatsd": "^0.0.7",
"node-gcm": "1.0.0",
"node-rsa": "^1.1.1",
"nodemailer": "^6.6.2",
"object-path": "^0.11.8",
"path": "^0.12.7",
"path-to-regexp": "^6.2.0",
"pdfjs-dist": "^2.8.335",
"photoswipe": "^4.1.3",
"pino": "^7.9.2",
"poplib": "^0.1.7",
"postis": "^2.2.0",
"prom-client": "^12.0.0",
"prometheus-gc-stats": "^0.6.3",
"proxy-from-env": "^1.1.0",
"psl": "^1.8.0",
"queue-fifo": "^0.2.6",
"rc-scrollbars": "^1.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.21.0",
"react-i18next": "^11.16.2",
"react-keyed-flatten-children": "^1.3.0",
"react-query": "^3.33.1",
"react-virtuoso": "^1.8.6",
"redis": "^2.8.0",
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
"semver": "^5.7.1",
"sharp": "^0.29.3",
"sip.js": "^0.20.0",
"sodium-native": "^3.2.1",
"sodium-plus": "^0.9.0",
"speakeasy": "^2.0.0",
"stream-buffers": "^3.0.2",
"string-strip-html": "^7.0.3",
"tar-stream": "^1.6.2",
"tinykeys": "^1.2.0",
"toastr": "^2.1.4",
"turndown": "^5.0.3",
"twilio": "^3.65.0",
"twit": "^2.2.11",
"ua-parser-js": "^1.0.2",
"underscore": "^1.13.1",
"underscore.string": "^3.3.5",
"universal-perf-hooks": "^1.0.1",
"url-polyfill": "^1.1.12",
"use-subscription": "^1.5.1",
"uuid": "^3.4.0",
"webdav": "^2.10.2",
"xml-crypto": "^2.1.3",
"xml-encryption": "0.11.2",
"xml2js": "0.4.23",
"xmldom": "^0.6.0",
"yaqrcode": "^0.2.1"
},
"meteor": {
"mainModule": {
"client": "client/main.ts",
"server": "server/main.ts"
}
},
"browserslist": [
"last 2 versions",
"Firefox ESR"
],
"volta": {
"node": "14.18.2",
"npm": "6.14.15"
},
"nyc": {
"include": [
"**/*.js",
"**/*.ts"
],
"exclude": [
".houston",
".meteor",
".scripts",
".snapcraft",
".storybook",
"node_modules",
"**/.mocharc.js",
"**/.mocharc.api.js",
"**/.mocharc.client.js",
"**/.mocharc.definition.js",
"**/tests/*"
],
"all": true
},
"installConfig": {
"hoistingLimits": "workspaces"
}
}