Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit 0fa2967

Browse files
authored
Merge pull request #4373 from withspectrum/2.4.79
2.4.79
2 parents 8f94b73 + eb931be commit 0fa2967

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1394
-1352
lines changed

.eslintrc.js

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
11
module.exports = {
2-
extends: 'react-app',
2+
extends: 'eslint:recommended',
3+
parser: 'babel-eslint',
34
env: {
4-
node: false,
5+
es6: true,
6+
node: true,
57
},
8+
parserOptions: {
9+
ecmaVersion: 6,
10+
sourceType: 'module',
11+
ecmaFeatures: {
12+
jsx: true,
13+
},
14+
},
15+
plugins: ['eslint-plugin-flowtype'],
616
rules: {
7-
'no-unused-vars': 0,
817
'no-undef': 0,
9-
radix: 0,
10-
'import/first': 0,
18+
'no-console': ['warn', { allow: ['warn', 'error'] }],
19+
'no-unused-vars': 0,
20+
'no-empty': 1,
21+
'no-useless-escape': 1,
22+
'no-fallthrough': 1,
23+
'no-extra-boolean-cast': 1,
1124
},
1225
};

api/migrations/seed/index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ users.forEach(user => {
6161
debug('Generating channels...');
6262
let channels = defaultChannels;
6363
communities.forEach(community => {
64+
if (community.deletedAt) return;
6465
randomAmount({ max: 10 }, () => {
6566
channels.push(generateChannel(community.id));
6667
});
@@ -78,6 +79,11 @@ generatedUsersChannels.map(elem => {
7879
debug('Generating threads...');
7980
let threads = defaultThreads;
8081
channels.forEach(channel => {
82+
const community = communities.find(
83+
community => community.id === channel.communityId
84+
);
85+
if (community.deletedAt) return;
86+
8187
randomAmount({ max: 10 }, () => {
8288
const creator = faker.random.arrayElement(users);
8389
const thread = generateThread(channel.communityId, channel.id, creator.id);

api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
"algoliasearch": "^3.30.0",
77
"apollo-engine": "^1.1.2",
88
"apollo-local-query": "^0.3.0",
9-
"apollo-server-express": "^2.2.2",
9+
"apollo-server-express": "^2.2.5",
1010
"apollo-upload-client": "^8.1.0",
1111
"aws-sdk": "2.200.0",
1212
"axios": "^0.16.2",
1313
"b2a": "^1.0.10",
1414
"babel-plugin-replace-dynamic-import-runtime": "^1.0.2",
15-
"babel-plugin-styled-components": "^1.9.0",
15+
"babel-plugin-styled-components": "^1.9.2",
1616
"babel-plugin-transform-flow-strip-types": "^6.22.0",
1717
"babel-plugin-transform-object-rest-spread": "^6.23.0",
1818
"babel-preset-env": "^1.7.0",
@@ -68,7 +68,7 @@
6868
"json-stringify-pretty-compact": "^1.2.0",
6969
"jsonwebtoken": "^8.4.0",
7070
"keygrip": "^1.0.3",
71-
"linkify-it": "^2.0.3",
71+
"linkify-it": "^2.1.0",
7272
"localstorage-memory": "^1.0.3",
7373
"lodash": "^4.17.11",
7474
"lodash.intersection": "^4.4.0",

api/yarn.lock

Lines changed: 83 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
busboy "^0.2.14"
1919
object-path "^0.11.4"
2020

21-
"@apollographql/graphql-playground-html@^1.6.4":
22-
version "1.6.4"
23-
resolved "https://registry.yarnpkg.com/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.4.tgz#8945edf73df846d50e027bb3b813d018a1c5925f"
24-
integrity sha512-gwvaQO6/Hv4DEwhDLmmu2tzCU9oPjC5Xl9Kk8Yd0IxyKhYLlLalmkMMjsZLzU5H3fGaalLD96OYfxHL0ClVUDQ==
21+
"@apollographql/graphql-playground-html@^1.6.6":
22+
version "1.6.6"
23+
resolved "https://registry.yarnpkg.com/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.6.tgz#022209e28a2b547dcde15b219f0c50f47aa5beb3"
24+
integrity sha512-lqK94b+caNtmKFs5oUVXlSpN3sm5IXZ+KfhMxOtr0LR2SqErzkoJilitjDvJ1WbjHlxLI7WtCjRmOLdOGJqtMQ==
2525

2626
"@babel/code-frame@^7.0.0":
2727
version "7.0.0"
@@ -314,13 +314,6 @@
314314
dependencies:
315315
"@babel/helper-plugin-utils" "^7.0.0"
316316

317-
"@babel/plugin-syntax-jsx@^7.0.0":
318-
version "7.0.0"
319-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.0.0.tgz#034d5e2b4e14ccaea2e4c137af7e4afb39375ffd"
320-
integrity sha512-PdmL2AoPsCLWxhIr3kG2+F9v4WH06Q3z+NoGVpQgnUNGcagXHq5sB3OXxkSahKq9TLdNMN/AJzFYSOo8UKDMHg==
321-
dependencies:
322-
"@babel/helper-plugin-utils" "^7.0.0"
323-
324317
"@babel/plugin-syntax-object-rest-spread@^7.0.0":
325318
version "7.0.0"
326319
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0.tgz#37d8fbcaf216bd658ea1aebbeb8b75e88ebc549b"
@@ -1176,20 +1169,20 @@ anymatch@^2.0.0:
11761169
micromatch "^3.1.4"
11771170
normalize-path "^2.1.1"
11781171

1179-
1180-
version "0.3.2"
1181-
resolved "https://registry.yarnpkg.com/apollo-cache-control/-/apollo-cache-control-0.3.2.tgz#fc98781e6df60346a20b0540450d02842c1212f2"
1182-
integrity sha512-/fhgCWGEoTsgyA83usy/1NvJWi6hbD4rSGO5jvyNNtMZ9ledOvKUvIdzSQ1r5hxK5yds/eehWXhMJ4Pu200qrQ==
1172+
1173+
version "0.3.3"
1174+
resolved "https://registry.yarnpkg.com/apollo-cache-control/-/apollo-cache-control-0.3.3.tgz#ad71d8f786e06f0275b2432004c15c2d37c48484"
1175+
integrity sha512-X6JhKfIaMLfl2jpsK/880BflXA+2lmm2sAsOZL4Bn2VrMsDtOssI1Ij9vNRbch9k9cA4WJvKed7Sql/wUIa1Eg==
11831176
dependencies:
11841177
apollo-server-env "2.2.0"
1185-
graphql-extensions "0.3.2"
1178+
graphql-extensions "0.3.3"
11861179

1187-
1188-
version "0.2.0"
1189-
resolved "https://registry.yarnpkg.com/apollo-datasource/-/apollo-datasource-0.2.0.tgz#ea28313689073150b18f0dbe35bedffc86a62b57"
1190-
integrity sha512-WJM9Ix3uogIfAG7mjL1NZQM9+45rcikn4mPWhE1Iuyw2+Y857J3uKJqQgF5h9Fg64SlCJh9u5WL3N7N5mg1fVw==
1180+
1181+
version "0.2.1"
1182+
resolved "https://registry.yarnpkg.com/apollo-datasource/-/apollo-datasource-0.2.1.tgz#3ecef4efe64f7a04a43862f32027d38ac09e142c"
1183+
integrity sha512-r185+JTa5KuF1INeTAk7AEP76zwMN6c8Ph1lmpzJMNwBUEzTGnLClrccCskCBx4SxfnkdKbuQdwn9JwCJUWrdg==
11911184
dependencies:
1192-
apollo-server-caching "0.2.0"
1185+
apollo-server-caching "0.2.1"
11931186
apollo-server-env "2.2.0"
11941187

11951188
@@ -1214,15 +1207,15 @@ [email protected]:
12141207
dependencies:
12151208
protobufjs "^6.8.6"
12161209

1217-
1218-
version "0.1.2"
1219-
resolved "https://registry.yarnpkg.com/apollo-engine-reporting/-/apollo-engine-reporting-0.1.2.tgz#6247e8d618da5c084ccb1bc76c665ce7a1b1ba55"
1220-
integrity sha512-W6zBTypI2ZLe9ZpMI4EasyXJP2WG8CpxYOU3Q4iuCKh8HYJqrQC5QVFXRF7TRBQTE6tc1seYnAHdgqv0ozxBrw==
1210+
1211+
version "0.1.3"
1212+
resolved "https://registry.yarnpkg.com/apollo-engine-reporting/-/apollo-engine-reporting-0.1.3.tgz#85ad6ffd71db8f877202ce8b3d7dbfa7cabfbcf9"
1213+
integrity sha512-VkjiifHMHIAxydXecT+ck0WtqpFIsMlylKnKeuNAXfIfAXHX/JYtLhbArTTyhDunLrphMiUewfFv9P0K+aX2jw==
12211214
dependencies:
12221215
apollo-engine-reporting-protobuf "0.1.0"
12231216
apollo-server-env "2.2.0"
12241217
async-retry "^1.2.1"
1225-
graphql-extensions "0.3.2"
1218+
graphql-extensions "0.3.3"
12261219
lodash "^4.17.10"
12271220

12281221
apollo-engine@^1.1.2:
@@ -1280,31 +1273,31 @@ apollo-local-query@^0.3.0:
12801273
dependencies:
12811274
debug "^2.6.9"
12821275

1283-
1284-
version "0.2.0"
1285-
resolved "https://registry.yarnpkg.com/apollo-server-caching/-/apollo-server-caching-0.2.0.tgz#fe560752d364f14d34c1eaacd9df629f8ed1cf5c"
1286-
integrity sha512-/v7xWEcyyahs3hwX4baH/GekuHz3LRt9NoIYwg869G1eeqjuwY6NsowRIujZ100anJQwm9v5A9/sLtHBFvbgYg==
1276+
1277+
version "0.2.1"
1278+
resolved "https://registry.yarnpkg.com/apollo-server-caching/-/apollo-server-caching-0.2.1.tgz#7e67f8c8cac829e622b394f0fb82579cabbeadfd"
1279+
integrity sha512-+U9F3X297LL8Gqy6ypfDNEv/DfV/tDht9Dr2z3AMaEkNW1bwO6rmdDL01zYxDuVDVq6Z3qSiNCSO2pXE2F0zmA==
12871280
dependencies:
1288-
lru-cache "^4.1.3"
1281+
lru-cache "^5.0.0"
12891282

1290-
1291-
version "2.2.2"
1292-
resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-2.2.2.tgz#66ca6b4af6c7cdd8155de946d0c4fea3357b0432"
1293-
integrity sha512-F6d4u5m1rJB4ucpLPGCoa9Dvo5OjGMIGdAzT9A35yOvlFWwvIR46jGmYmGmNp4Qx852rb1axSZVzNy7k/Dix0w==
1283+
1284+
version "2.2.5"
1285+
resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-2.2.5.tgz#bf1538c10213be38a37dd8e6461461f7b808c57e"
1286+
integrity sha512-obz6VSJI7vSR+pEAZFwqOe/HAOuF4l1fYU9WNtVcQvxaKhykDgcu+byO0sXrOf/iB7uUIyaFdhinwzuwkqB8XQ==
12941287
dependencies:
12951288
"@apollographql/apollo-tools" "^0.2.6"
12961289
"@apollographql/apollo-upload-server" "^5.0.3"
1297-
"@apollographql/graphql-playground-html" "^1.6.4"
1290+
"@apollographql/graphql-playground-html" "^1.6.6"
12981291
"@types/ws" "^6.0.0"
1299-
apollo-cache-control "0.3.2"
1300-
apollo-datasource "0.2.0"
1301-
apollo-engine-reporting "0.1.2"
1302-
apollo-server-caching "0.2.0"
1292+
apollo-cache-control "0.3.3"
1293+
apollo-datasource "0.2.1"
1294+
apollo-engine-reporting "0.1.3"
1295+
apollo-server-caching "0.2.1"
13031296
apollo-server-env "2.2.0"
13041297
apollo-server-errors "2.2.0"
1305-
apollo-server-plugin-base "0.1.2"
1306-
apollo-tracing "0.3.2"
1307-
graphql-extensions "0.3.2"
1298+
apollo-server-plugin-base "0.1.5"
1299+
apollo-tracing "0.3.3"
1300+
graphql-extensions "0.3.5"
13081301
graphql-subscriptions "^1.0.0"
13091302
graphql-tag "^2.9.2"
13101303
graphql-tools "^4.0.0"
@@ -1326,37 +1319,37 @@ [email protected]:
13261319
resolved "https://registry.yarnpkg.com/apollo-server-errors/-/apollo-server-errors-2.2.0.tgz#5b452a1d6ff76440eb0f127511dc58031a8f3cb5"
13271320
integrity sha512-gV9EZG2tovFtT1cLuCTavnJu2DaKxnXPRNGSTo+SDI6IAk6cdzyW0Gje5N2+3LybI0Wq5KAbW6VLei31S4MWmg==
13281321

1329-
apollo-server-express@^2.2.2:
1330-
version "2.2.2"
1331-
resolved "https://registry.yarnpkg.com/apollo-server-express/-/apollo-server-express-2.2.2.tgz#e6811024cac695351600c18985331b43ba24f556"
1332-
integrity sha512-DPxHOUd0Waztuix0r1ed6xfdlR7P7RzIXPmybhPXj1bZJtYHz5If0ngYNjtFqnXVrC8aSRtMz108SQUAnduYwA==
1322+
apollo-server-express@^2.2.5:
1323+
version "2.2.5"
1324+
resolved "https://registry.yarnpkg.com/apollo-server-express/-/apollo-server-express-2.2.5.tgz#9d27d68b3b1cf2f96a107a3091ecdea4012745a2"
1325+
integrity sha512-2SNlY8CNmYlbRJfn0iK4wesjqX3X9YIFhyok4sQ80n/gm24QMwZkFcPP+NLv+1lxvwyJYMwEFQPIBvkLRoUFXQ==
13331326
dependencies:
13341327
"@apollographql/apollo-upload-server" "^5.0.3"
1335-
"@apollographql/graphql-playground-html" "^1.6.4"
1328+
"@apollographql/graphql-playground-html" "^1.6.6"
13361329
"@types/accepts" "^1.3.5"
13371330
"@types/body-parser" "1.17.0"
13381331
"@types/cors" "^2.8.4"
13391332
"@types/express" "4.16.0"
13401333
accepts "^1.3.5"
1341-
apollo-server-core "2.2.2"
1334+
apollo-server-core "2.2.5"
13421335
body-parser "^1.18.3"
13431336
cors "^2.8.4"
13441337
graphql-subscriptions "^1.0.0"
13451338
graphql-tools "^4.0.0"
13461339
type-is "^1.6.16"
13471340

1348-
1349-
version "0.1.2"
1350-
resolved "https://registry.yarnpkg.com/apollo-server-plugin-base/-/apollo-server-plugin-base-0.1.2.tgz#4c1ebb769b630a16ff8ade03f12759cde17a21dc"
1351-
integrity sha512-+uicMcNctlP6YwIhzLLEycZzao/810OSzcxgPYKItXr5lGa1GuHD7sRIWldT3YoSdpw6Gal2lBuw6/DmnoDsPg==
1341+
1342+
version "0.1.5"
1343+
resolved "https://registry.yarnpkg.com/apollo-server-plugin-base/-/apollo-server-plugin-base-0.1.5.tgz#899c4d7bc0d9a6d9f1181cc83a791479409086f8"
1344+
integrity sha512-be77TaN9l16ZVG1tBl8Re3lJfUZ6B2T3DdEXnu6fjQwUuBdu3Y4MQR6B1TLhbuTb9DUkcSKZ3h5C55dIjvb2Vg==
13521345

1353-
1354-
version "0.3.2"
1355-
resolved "https://registry.yarnpkg.com/apollo-tracing/-/apollo-tracing-0.3.2.tgz#1a6b695813791b8404b5adaa10925a7f2642f15d"
1356-
integrity sha512-YwN1m1k0JJsxGh0QWsEM3OLnyem0GT2tZnGeO2OogCr6dH5lE0SjKPc6UzpcI/3fPyxRrx5QvpUiP+DJeehhTA==
1346+
1347+
version "0.3.3"
1348+
resolved "https://registry.yarnpkg.com/apollo-tracing/-/apollo-tracing-0.3.3.tgz#b819942180480c1c4d89e613cf2eff8f6d8b595a"
1349+
integrity sha512-gsTYgDVjtMlnomPq46aky7yk8XshCQfj9rxalCCismLlMomVW44fq+8GKQnZIkFOwiAsazRy4dzZ0cBbygA9sA==
13571350
dependencies:
13581351
apollo-server-env "2.2.0"
1359-
graphql-extensions "0.3.2"
1352+
graphql-extensions "0.3.3"
13601353

13611354
apollo-upload-client@^8.1.0:
13621355
version "8.1.0"
@@ -1849,13 +1842,13 @@ babel-plugin-styled-components@^1.1.4:
18491842
"@babel/helper-annotate-as-pure" "^7.0.0"
18501843
lodash "^4.17.10"
18511844

1852-
babel-plugin-styled-components@^1.9.0:
1853-
version "1.9.0"
1854-
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.9.0.tgz#7b814bbe55900d9e0f6ec2c66741a1992c1c4a3d"
1855-
integrity sha512-DRurNjnndoIAiW0+vYgQyGmnCtKyCEGP9Y19Z9NrSwMEMGBWl2S7Q7F70RyGDae+KKeighhOPI1WttIb3r0xaA==
1845+
babel-plugin-styled-components@^1.9.2:
1846+
version "1.9.2"
1847+
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.9.2.tgz#0e6a6587454dcb1c9a362a8fd31fc0b075ccd260"
1848+
integrity sha512-McnheW8RkBkur/mQw7rEwQO/oUUruQ/nIIj5LIRpsVL8pzG1oo1Y53xyvAYeOfamIrl4/ta7g1G/kuTR1ekO3A==
18561849
dependencies:
18571850
"@babel/helper-annotate-as-pure" "^7.0.0"
1858-
"@babel/plugin-syntax-jsx" "^7.0.0"
1851+
babel-plugin-syntax-jsx "^6.18.0"
18591852
lodash "^4.17.10"
18601853

18611854
babel-plugin-syntax-async-functions@^6.8.0:
@@ -1878,7 +1871,7 @@ babel-plugin-syntax-flow@^6.18.0:
18781871
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
18791872
integrity sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=
18801873

1881-
babel-plugin-syntax-jsx@^6.8.0:
1874+
babel-plugin-syntax-jsx@^6.18.0, babel-plugin-syntax-jsx@^6.8.0:
18821875
version "6.18.0"
18831876
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
18841877
integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
@@ -4629,10 +4622,17 @@ graphql-depth-limit@^1.1.0:
46294622
dependencies:
46304623
arrify "^1.0.1"
46314624

4632-
4633-
version "0.3.2"
4634-
resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.3.2.tgz#a19dd62b62d769f4d1b9c4b4781cc353b2174998"
4635-
integrity sha512-eIAWwtZNlUAHtHF6uNP6+4M+GCksqUYfNBxW5rTAlCB4/ZcuIvchVtN1CgVM7MooW3akPM1Eci11WyeXvgOugQ==
4625+
4626+
version "0.3.3"
4627+
resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.3.3.tgz#277efe11976bbdfd59915551606a2d550247bb45"
4628+
integrity sha512-pudOaHq7Ok+rh1ElzlqFaoYZWGefUNsqn/jX6eKns7rl0VHuB4qZBfhpVLTpquJpM6Y19/hsCYZNPfnUVMFIiA==
4629+
dependencies:
4630+
"@apollographql/apollo-tools" "^0.2.6"
4631+
4632+
4633+
version "0.3.5"
4634+
resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.3.5.tgz#95b742185d0016a9d65385a7a9e10753eadf0537"
4635+
integrity sha512-jpWSUIr27iOTR5JYu+dEMz74oZhOj8Xy+6lNopluiIu+ObEVSHW0czb2Jlcy3rOSTEPcibnpStO4F4/64IBqeQ==
46364636
dependencies:
46374637
"@apollographql/apollo-tools" "^0.2.6"
46384638

@@ -6103,6 +6103,13 @@ linkify-it@^2.0.3:
61036103
dependencies:
61046104
uc.micro "^1.0.1"
61056105

6106+
linkify-it@^2.1.0:
6107+
version "2.1.0"
6108+
resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.1.0.tgz#c4caf38a6cd7ac2212ef3c7d2bde30a91561f9db"
6109+
integrity sha512-4REs8/062kV2DSHxNfq5183zrqXMl7WP0WzABH9IeJI+NLm429FgE1PDecltYfnOoFDFlZGh2T8PfZn0r+GTRg==
6110+
dependencies:
6111+
uc.micro "^1.0.1"
6112+
61066113
listenercount@~1.0.1:
61076114
version "1.0.1"
61086115
resolved "https://registry.yarnpkg.com/listenercount/-/listenercount-1.0.1.tgz#84c8a72ab59c4725321480c975e6508342e70937"
@@ -6378,14 +6385,21 @@ lowercase-keys@^1.0.0:
63786385
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
63796386
integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
63806387

6381-
lru-cache@^4.0.1, lru-cache@^4.1.1, lru-cache@^4.1.3:
6388+
lru-cache@^4.0.1, lru-cache@^4.1.1:
63826389
version "4.1.3"
63836390
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c"
63846391
integrity sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==
63856392
dependencies:
63866393
pseudomap "^1.0.2"
63876394
yallist "^2.1.2"
63886395

6396+
lru-cache@^5.0.0:
6397+
version "5.1.1"
6398+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
6399+
integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
6400+
dependencies:
6401+
yallist "^3.0.2"
6402+
63896403
macos-release@^1.0.0:
63906404
version "1.1.0"
63916405
resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-1.1.0.tgz#831945e29365b470aa8724b0ab36c8f8959d10fb"

athena/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@
1010
"bull": "3.3.10",
1111
"cryptr": "^3.0.0",
1212
"debug": "^4.1.0",
13+
"decode-uri-component": "^0.2.0",
1314
"draft-js": "^0.10.5",
1415
"emoji-regex": "^6.5.1",
1516
"expo-server-sdk": "^2.4.0",
1617
"faker": "^4.1.0",
18+
"imgix-core-js": "^1.2.0",
1719
"lodash.intersection": "^4.4.0",
1820
"node-env-file": "^0.1.8",
1921
"now-env": "^3.1.0",

0 commit comments

Comments
 (0)