prisma-nestjs-graphql 14.6.1 → 14.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +63 -62
- package/package.json +33 -33
package/index.js
CHANGED
|
@@ -22,29 +22,29 @@ var __spreadValues = (a, b) => {
|
|
|
22
22
|
};
|
|
23
23
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
24
24
|
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
|
|
25
|
-
var __reExport = (target, module2, desc) => {
|
|
25
|
+
var __reExport = (target, module2, copyDefault, desc) => {
|
|
26
26
|
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
|
|
27
27
|
for (let key of __getOwnPropNames(module2))
|
|
28
|
-
if (!__hasOwnProp.call(target, key) && key !== "default")
|
|
28
|
+
if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
|
|
29
29
|
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
|
|
30
30
|
}
|
|
31
31
|
return target;
|
|
32
32
|
};
|
|
33
|
-
var
|
|
34
|
-
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default",
|
|
33
|
+
var __toESM = (module2, isNodeMode) => {
|
|
34
|
+
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
|
|
35
35
|
};
|
|
36
36
|
|
|
37
37
|
// src/index.ts
|
|
38
|
-
var import_generator_helper =
|
|
38
|
+
var import_generator_helper = require("@prisma/generator-helper");
|
|
39
39
|
|
|
40
40
|
// src/generate.ts
|
|
41
|
-
var import_assert6 =
|
|
42
|
-
var import_await_event_emitter =
|
|
43
|
-
var import_lodash10 =
|
|
44
|
-
var import_ts_morph9 =
|
|
41
|
+
var import_assert6 = require("assert");
|
|
42
|
+
var import_await_event_emitter = __toESM(require("await-event-emitter"));
|
|
43
|
+
var import_lodash10 = require("lodash");
|
|
44
|
+
var import_ts_morph9 = require("ts-morph");
|
|
45
45
|
|
|
46
46
|
// src/helpers/pascal-case.ts
|
|
47
|
-
var import_lodash =
|
|
47
|
+
var import_lodash = require("lodash");
|
|
48
48
|
function pascalCase(string) {
|
|
49
49
|
return (0, import_lodash.startCase)((0, import_lodash.camelCase)(string)).replace(/ /g, "");
|
|
50
50
|
}
|
|
@@ -191,11 +191,11 @@ function classProperty(property, eventArguments) {
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
// src/handlers/generate-files.ts
|
|
194
|
-
var import_assert =
|
|
195
|
-
var import_ts_morph2 =
|
|
194
|
+
var import_assert = require("assert");
|
|
195
|
+
var import_ts_morph2 = require("ts-morph");
|
|
196
196
|
|
|
197
197
|
// src/helpers/import-declaration-map.ts
|
|
198
|
-
var import_ts_morph =
|
|
198
|
+
var import_ts_morph = require("ts-morph");
|
|
199
199
|
var ImportDeclarationMap = class extends Map {
|
|
200
200
|
add(name, value) {
|
|
201
201
|
if (!this.has(name)) {
|
|
@@ -338,11 +338,11 @@ async function generateFiles(args) {
|
|
|
338
338
|
}
|
|
339
339
|
|
|
340
340
|
// src/handlers/input-type.ts
|
|
341
|
-
var import_assert2 =
|
|
342
|
-
var import_json5 =
|
|
343
|
-
var import_lodash3 =
|
|
344
|
-
var import_pupa =
|
|
345
|
-
var import_ts_morph4 =
|
|
341
|
+
var import_assert2 = require("assert");
|
|
342
|
+
var import_json5 = __toESM(require("json5"));
|
|
343
|
+
var import_lodash3 = require("lodash");
|
|
344
|
+
var import_pupa = __toESM(require("pupa"));
|
|
345
|
+
var import_ts_morph4 = require("ts-morph");
|
|
346
346
|
|
|
347
347
|
// src/helpers/file-type-by-location.ts
|
|
348
348
|
function fileTypeByLocation(fieldLocation) {
|
|
@@ -358,7 +358,7 @@ function fileTypeByLocation(fieldLocation) {
|
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
// src/helpers/relative-path.ts
|
|
361
|
-
var import_get_relative_path =
|
|
361
|
+
var import_get_relative_path = __toESM(require("get-relative-path"));
|
|
362
362
|
function relativePath(from, to) {
|
|
363
363
|
if (!from.startsWith("/")) {
|
|
364
364
|
from = `/${from}`;
|
|
@@ -414,8 +414,8 @@ function getGraphqlImport(args) {
|
|
|
414
414
|
}
|
|
415
415
|
|
|
416
416
|
// src/helpers/get-graphql-input-type.ts
|
|
417
|
-
var import_lodash2 =
|
|
418
|
-
var import_outmatch =
|
|
417
|
+
var import_lodash2 = require("lodash");
|
|
418
|
+
var import_outmatch = __toESM(require("outmatch"));
|
|
419
419
|
function getGraphqlInputType(inputTypes, pattern) {
|
|
420
420
|
let result;
|
|
421
421
|
inputTypes = inputTypes.filter((t) => !["null", "Null"].includes(String(t.type)));
|
|
@@ -493,7 +493,7 @@ function getPropertyType(args) {
|
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
// src/helpers/property-structure.ts
|
|
496
|
-
var import_ts_morph3 =
|
|
496
|
+
var import_ts_morph3 = require("ts-morph");
|
|
497
497
|
function propertyStructure(args) {
|
|
498
498
|
const {
|
|
499
499
|
isNullable,
|
|
@@ -668,9 +668,9 @@ function inputType(args) {
|
|
|
668
668
|
}
|
|
669
669
|
|
|
670
670
|
// src/helpers/object-settings.ts
|
|
671
|
-
var import_json52 =
|
|
672
|
-
var import_lodash4 =
|
|
673
|
-
var import_outmatch2 =
|
|
671
|
+
var import_json52 = __toESM(require("json5"));
|
|
672
|
+
var import_lodash4 = require("lodash");
|
|
673
|
+
var import_outmatch2 = __toESM(require("outmatch"));
|
|
674
674
|
var ObjectSettings = class extends Array {
|
|
675
675
|
shouldHideField({
|
|
676
676
|
name,
|
|
@@ -865,9 +865,9 @@ function modelData(model, args) {
|
|
|
865
865
|
const { config, modelNames, models, modelFields, fieldSettings } = args;
|
|
866
866
|
modelNames.push(model.name);
|
|
867
867
|
models.set(model.name, model);
|
|
868
|
-
const modelFieldsValue = new Map();
|
|
868
|
+
const modelFieldsValue = /* @__PURE__ */ new Map();
|
|
869
869
|
modelFields.set(model.name, modelFieldsValue);
|
|
870
|
-
const fieldSettingsValue = new Map();
|
|
870
|
+
const fieldSettingsValue = /* @__PURE__ */ new Map();
|
|
871
871
|
fieldSettings.set(model.name, fieldSettingsValue);
|
|
872
872
|
for (const field of model.fields) {
|
|
873
873
|
if (field.documentation) {
|
|
@@ -883,11 +883,11 @@ function modelData(model, args) {
|
|
|
883
883
|
}
|
|
884
884
|
|
|
885
885
|
// src/handlers/model-output-type.ts
|
|
886
|
-
var import_assert3 =
|
|
887
|
-
var import_json53 =
|
|
888
|
-
var import_lodash5 =
|
|
889
|
-
var import_pupa2 =
|
|
890
|
-
var import_ts_morph5 =
|
|
886
|
+
var import_assert3 = require("assert");
|
|
887
|
+
var import_json53 = __toESM(require("json5"));
|
|
888
|
+
var import_lodash5 = require("lodash");
|
|
889
|
+
var import_pupa2 = __toESM(require("pupa"));
|
|
890
|
+
var import_ts_morph5 = require("ts-morph");
|
|
891
891
|
|
|
892
892
|
// src/helpers/get-output-type-name.ts
|
|
893
893
|
function getOutputTypeName(name) {
|
|
@@ -1109,10 +1109,10 @@ function isAtomicOperation(name) {
|
|
|
1109
1109
|
}
|
|
1110
1110
|
|
|
1111
1111
|
// src/handlers/output-type.ts
|
|
1112
|
-
var import_assert4 =
|
|
1113
|
-
var import_json54 =
|
|
1114
|
-
var import_lodash6 =
|
|
1115
|
-
var import_ts_morph6 =
|
|
1112
|
+
var import_assert4 = require("assert");
|
|
1113
|
+
var import_json54 = __toESM(require("json5"));
|
|
1114
|
+
var import_lodash6 = require("lodash");
|
|
1115
|
+
var import_ts_morph6 = require("ts-morph");
|
|
1116
1116
|
var nestjsGraphql2 = "@nestjs/graphql";
|
|
1117
1117
|
function outputType(outputType2, args) {
|
|
1118
1118
|
var _a, _b, _c, _d, _e;
|
|
@@ -1162,6 +1162,7 @@ function outputType(outputType2, args) {
|
|
|
1162
1162
|
const property = propertyStructure({
|
|
1163
1163
|
name: field.name,
|
|
1164
1164
|
isNullable: field.isNullable,
|
|
1165
|
+
hasQuestionToken: isCountOutput ? true : void 0,
|
|
1165
1166
|
propertyType,
|
|
1166
1167
|
isList
|
|
1167
1168
|
});
|
|
@@ -1241,7 +1242,7 @@ function outputType(outputType2, args) {
|
|
|
1241
1242
|
}
|
|
1242
1243
|
|
|
1243
1244
|
// src/handlers/purge-output.ts
|
|
1244
|
-
var import_fs =
|
|
1245
|
+
var import_fs = require("fs");
|
|
1245
1246
|
function purgeOutput(emitter) {
|
|
1246
1247
|
emitter.on("Begin", begin);
|
|
1247
1248
|
emitter.on("End", end);
|
|
@@ -1267,21 +1268,21 @@ async function end({ project, output }) {
|
|
|
1267
1268
|
}
|
|
1268
1269
|
|
|
1269
1270
|
// src/handlers/re-export.ts
|
|
1270
|
-
var import_ts_morph7 =
|
|
1271
|
-
var ReExport
|
|
1272
|
-
(function(ReExport2) {
|
|
1271
|
+
var import_ts_morph7 = require("ts-morph");
|
|
1272
|
+
var ReExport = /* @__PURE__ */ ((ReExport2) => {
|
|
1273
1273
|
ReExport2["None"] = "None";
|
|
1274
1274
|
ReExport2["Directories"] = "Directories";
|
|
1275
1275
|
ReExport2["Single"] = "Single";
|
|
1276
1276
|
ReExport2["All"] = "All";
|
|
1277
|
-
|
|
1277
|
+
return ReExport2;
|
|
1278
|
+
})(ReExport || {});
|
|
1278
1279
|
function reExport(emitter) {
|
|
1279
1280
|
emitter.on("BeforeGenerateFiles", beforeGenerateFiles3);
|
|
1280
1281
|
}
|
|
1281
1282
|
function beforeGenerateFiles3(args) {
|
|
1282
1283
|
const { project, output, config } = args;
|
|
1283
1284
|
const rootDirectory = project.getDirectoryOrThrow(output);
|
|
1284
|
-
if ([
|
|
1285
|
+
if (["Directories" /* Directories */, "All" /* All */].includes(config.reExport)) {
|
|
1285
1286
|
for (const directory of rootDirectory.getDirectories()) {
|
|
1286
1287
|
const exportDeclarations = directory.getSourceFiles().filter((sourceFile) => {
|
|
1287
1288
|
return sourceFile.getBaseName() !== "index.ts";
|
|
@@ -1293,7 +1294,7 @@ function beforeGenerateFiles3(args) {
|
|
|
1293
1294
|
});
|
|
1294
1295
|
}
|
|
1295
1296
|
}
|
|
1296
|
-
if (config.reExport ===
|
|
1297
|
+
if (config.reExport === "Single" /* Single */) {
|
|
1297
1298
|
const exportDeclarations = project.getSourceFiles().filter((sourceFile) => {
|
|
1298
1299
|
return sourceFile.getBaseName() !== "index.ts";
|
|
1299
1300
|
}).map((sourceFile) => getExportDeclaration2(rootDirectory, sourceFile));
|
|
@@ -1303,7 +1304,7 @@ function beforeGenerateFiles3(args) {
|
|
|
1303
1304
|
overwrite: true
|
|
1304
1305
|
});
|
|
1305
1306
|
}
|
|
1306
|
-
if (config.reExport ===
|
|
1307
|
+
if (config.reExport === "All" /* All */) {
|
|
1307
1308
|
const exportDeclarations = [];
|
|
1308
1309
|
for (const directory of rootDirectory.getDirectories()) {
|
|
1309
1310
|
const sourceFile = directory.getSourceFileOrThrow("index.ts");
|
|
@@ -1325,7 +1326,7 @@ function getExportDeclaration2(directory, sourceFile) {
|
|
|
1325
1326
|
}
|
|
1326
1327
|
|
|
1327
1328
|
// src/handlers/register-enum.ts
|
|
1328
|
-
var import_ts_morph8 =
|
|
1329
|
+
var import_ts_morph8 = require("ts-morph");
|
|
1329
1330
|
function registerEnum(enumType, args) {
|
|
1330
1331
|
const { getSourceFile, enums } = args;
|
|
1331
1332
|
const dataModelEnum = enums[enumType.name];
|
|
@@ -1386,12 +1387,12 @@ function warning(message) {
|
|
|
1386
1387
|
}
|
|
1387
1388
|
|
|
1388
1389
|
// src/helpers/create-config.ts
|
|
1389
|
-
var import_assert5 =
|
|
1390
|
-
var import_filenamify =
|
|
1391
|
-
var import_flat =
|
|
1392
|
-
var import_json55 =
|
|
1393
|
-
var import_lodash7 =
|
|
1394
|
-
var import_outmatch3 =
|
|
1390
|
+
var import_assert5 = require("assert");
|
|
1391
|
+
var import_filenamify = __toESM(require("filenamify"));
|
|
1392
|
+
var import_flat = require("flat");
|
|
1393
|
+
var import_json55 = __toESM(require("json5"));
|
|
1394
|
+
var import_lodash7 = require("lodash");
|
|
1395
|
+
var import_outmatch3 = __toESM(require("outmatch"));
|
|
1395
1396
|
function createConfig(data) {
|
|
1396
1397
|
var _a;
|
|
1397
1398
|
const config = (0, import_lodash7.merge)({}, (0, import_flat.unflatten)(data, { delimiter: "_" }));
|
|
@@ -1444,7 +1445,7 @@ function createConfig(data) {
|
|
|
1444
1445
|
tsConfigFilePath: void 0,
|
|
1445
1446
|
combineScalarFilters: toBoolean(config.combineScalarFilters),
|
|
1446
1447
|
noAtomicOperations: toBoolean(config.noAtomicOperations),
|
|
1447
|
-
reExport: ReExport[String(config.reExport)] ||
|
|
1448
|
+
reExport: ReExport[String(config.reExport)] || "None" /* None */,
|
|
1448
1449
|
emitSingle: toBoolean(config.emitSingle),
|
|
1449
1450
|
emitCompiled: toBoolean(config.emitCompiled),
|
|
1450
1451
|
$warnings,
|
|
@@ -1482,9 +1483,9 @@ function toBoolean(value) {
|
|
|
1482
1483
|
}
|
|
1483
1484
|
|
|
1484
1485
|
// src/helpers/generate-file-name.ts
|
|
1485
|
-
var import_lodash8 =
|
|
1486
|
-
var import_pluralize =
|
|
1487
|
-
var import_pupa3 =
|
|
1486
|
+
var import_lodash8 = require("lodash");
|
|
1487
|
+
var import_pluralize = __toESM(require("pluralize"));
|
|
1488
|
+
var import_pupa3 = __toESM(require("pupa"));
|
|
1488
1489
|
function generateFileName(args) {
|
|
1489
1490
|
const { template, type, name, getModelName: getModelName2 } = args;
|
|
1490
1491
|
return (0, import_pupa3.default)(template, {
|
|
@@ -1528,7 +1529,7 @@ function factoryGetSourceFile(args) {
|
|
|
1528
1529
|
}
|
|
1529
1530
|
|
|
1530
1531
|
// src/helpers/get-model-name.ts
|
|
1531
|
-
var import_lodash9 =
|
|
1532
|
+
var import_lodash9 = require("lodash");
|
|
1532
1533
|
function createGetModelName(modelNames) {
|
|
1533
1534
|
return (0, import_lodash9.memoize)(tryGetName);
|
|
1534
1535
|
function tryGetName(name) {
|
|
@@ -1679,14 +1680,14 @@ async function generate(args) {
|
|
|
1679
1680
|
}
|
|
1680
1681
|
config.combineScalarFilters && combineScalarFilters(eventEmitter);
|
|
1681
1682
|
config.noAtomicOperations && noAtomicOperations(eventEmitter);
|
|
1682
|
-
config.reExport !==
|
|
1683
|
+
config.reExport !== "None" /* None */ && reExport(eventEmitter);
|
|
1683
1684
|
config.emitSingle && emitSingle(eventEmitter);
|
|
1684
1685
|
config.purgeOutput && purgeOutput(eventEmitter);
|
|
1685
1686
|
config.requireSingleFieldsInWhereUniqueInput && requireSingleFieldsInWhereUniqueInput(eventEmitter);
|
|
1686
|
-
const models = new Map();
|
|
1687
|
+
const models = /* @__PURE__ */ new Map();
|
|
1687
1688
|
const modelNames = [];
|
|
1688
|
-
const modelFields = new Map();
|
|
1689
|
-
const fieldSettings = new Map();
|
|
1689
|
+
const modelFields = /* @__PURE__ */ new Map();
|
|
1690
|
+
const fieldSettings = /* @__PURE__ */ new Map();
|
|
1690
1691
|
const getModelName2 = createGetModelName(modelNames);
|
|
1691
1692
|
const getSourceFile = factoryGetSourceFile({
|
|
1692
1693
|
output: generatorOutputValue,
|
|
@@ -1699,7 +1700,7 @@ async function generate(args) {
|
|
|
1699
1700
|
datamodel,
|
|
1700
1701
|
schema: { inputObjectTypes, outputObjectTypes, enumTypes }
|
|
1701
1702
|
} = JSON.parse(JSON.stringify(dmmf));
|
|
1702
|
-
const removeTypes = new Set();
|
|
1703
|
+
const removeTypes = /* @__PURE__ */ new Set();
|
|
1703
1704
|
const eventArguments = {
|
|
1704
1705
|
models,
|
|
1705
1706
|
config,
|
|
@@ -1710,7 +1711,7 @@ async function generate(args) {
|
|
|
1710
1711
|
output: generatorOutputValue,
|
|
1711
1712
|
getSourceFile,
|
|
1712
1713
|
eventEmitter,
|
|
1713
|
-
typeNames: new Set(),
|
|
1714
|
+
typeNames: /* @__PURE__ */ new Set(),
|
|
1714
1715
|
enums: (0, import_lodash10.mapKeys)(datamodel.enums, (x) => x.name),
|
|
1715
1716
|
getModelName: getModelName2,
|
|
1716
1717
|
removeTypes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prisma-nestjs-graphql",
|
|
3
|
-
"version": "14.6.
|
|
3
|
+
"version": "14.6.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Generate object types, inputs, args, etc. from prisma schema file for usage with @nestjs/graphql module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@prisma/generator-helper": "^3.
|
|
54
|
+
"@prisma/generator-helper": "^3.9.2",
|
|
55
55
|
"await-event-emitter": "^2.0.2",
|
|
56
56
|
"filenamify": "4.X",
|
|
57
57
|
"flat": "^5.0.2",
|
|
@@ -64,63 +64,63 @@
|
|
|
64
64
|
"ts-morph": ">=11"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@commitlint/cli": "^
|
|
68
|
-
"@commitlint/config-conventional": "^
|
|
69
|
-
"@nestjs/common": "^8.
|
|
70
|
-
"@nestjs/core": "^8.
|
|
71
|
-
"@nestjs/graphql": "^
|
|
72
|
-
"@nestjs/platform-express": "^8.
|
|
73
|
-
"@paljs/plugins": "^4.0.
|
|
74
|
-
"@prisma/client": "^3.
|
|
67
|
+
"@commitlint/cli": "^16.2.1",
|
|
68
|
+
"@commitlint/config-conventional": "^16.2.1",
|
|
69
|
+
"@nestjs/common": "^8.3.1",
|
|
70
|
+
"@nestjs/core": "^8.3.1",
|
|
71
|
+
"@nestjs/graphql": "^10.0.4",
|
|
72
|
+
"@nestjs/platform-express": "^8.3.1",
|
|
73
|
+
"@paljs/plugins": "^4.0.13",
|
|
74
|
+
"@prisma/client": "^3.9.2",
|
|
75
75
|
"@semantic-release/changelog": "^6.0.1",
|
|
76
76
|
"@semantic-release/git": "^10.0.1",
|
|
77
77
|
"@types/flat": "^5.0.2",
|
|
78
|
-
"@types/lodash": "^4.14.
|
|
79
|
-
"@types/mocha": "^9.
|
|
80
|
-
"@types/node": "^
|
|
78
|
+
"@types/lodash": "^4.14.178",
|
|
79
|
+
"@types/mocha": "^9.1.0",
|
|
80
|
+
"@types/node": "^17.0.18",
|
|
81
81
|
"@types/pluralize": "^0.0.29",
|
|
82
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
83
|
-
"@typescript-eslint/parser": "^5.
|
|
84
|
-
"apollo-server-express": "^3.
|
|
85
|
-
"c8": "^7.
|
|
82
|
+
"@typescript-eslint/eslint-plugin": "^5.12.0",
|
|
83
|
+
"@typescript-eslint/parser": "^5.12.0",
|
|
84
|
+
"apollo-server-express": "^3.6.3",
|
|
85
|
+
"c8": "^7.11.0",
|
|
86
86
|
"class-transformer": "^0.5.1",
|
|
87
87
|
"class-validator": "^0.13.2",
|
|
88
88
|
"commitizen": "^4.2.4",
|
|
89
89
|
"cz-customizable": "^6.3.0",
|
|
90
90
|
"decimal.js": "^10.3.1",
|
|
91
|
-
"eslint": "^8.
|
|
91
|
+
"eslint": "^8.9.0",
|
|
92
92
|
"eslint-import-resolver-node": "^0.3.6",
|
|
93
|
-
"eslint-plugin-etc": "^2.0.
|
|
94
|
-
"eslint-plugin-import": "^2.25.
|
|
93
|
+
"eslint-plugin-etc": "^2.0.2",
|
|
94
|
+
"eslint-plugin-import": "^2.25.4",
|
|
95
95
|
"eslint-plugin-only-warn": "^1.0.3",
|
|
96
96
|
"eslint-plugin-prettier": "^4.0.0",
|
|
97
97
|
"eslint-plugin-regexp": "^1.5.1",
|
|
98
98
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
99
|
-
"eslint-plugin-sort-class-members": "^1.14.
|
|
100
|
-
"eslint-plugin-unicorn": "^
|
|
99
|
+
"eslint-plugin-sort-class-members": "^1.14.1",
|
|
100
|
+
"eslint-plugin-unicorn": "^41.0.0",
|
|
101
101
|
"eslint-plugin-wix-editor": "^3.3.0",
|
|
102
|
-
"expect": "^27.
|
|
102
|
+
"expect": "^27.5.1",
|
|
103
103
|
"ghooks": "^2.0.4",
|
|
104
104
|
"git-branch-is": "^4.0.0",
|
|
105
|
-
"graphql": "^
|
|
106
|
-
"graphql-scalars": "^1.
|
|
105
|
+
"graphql": "^16.3.0",
|
|
106
|
+
"graphql-scalars": "^1.14.1",
|
|
107
107
|
"graphql-type-json": "^0.3.2",
|
|
108
|
-
"mocha": "^9.1
|
|
108
|
+
"mocha": "^9.2.1",
|
|
109
109
|
"ololog": "^1.1.175",
|
|
110
110
|
"precise-commits": "^1.0.2",
|
|
111
|
-
"prettier": "^2.5.
|
|
112
|
-
"prisma": "^3.
|
|
113
|
-
"prisma-graphql-type-decimal": "^
|
|
111
|
+
"prettier": "^2.5.1",
|
|
112
|
+
"prisma": "^3.9.2",
|
|
113
|
+
"prisma-graphql-type-decimal": "^2.0.0",
|
|
114
114
|
"reflect-metadata": "^0.1.13",
|
|
115
115
|
"request": "^2.88.2",
|
|
116
|
-
"rxjs": "^7.4
|
|
117
|
-
"semantic-release": "^
|
|
116
|
+
"rxjs": "^7.5.4",
|
|
117
|
+
"semantic-release": "^19.0.2",
|
|
118
118
|
"simplytyped": "^3.3.0",
|
|
119
119
|
"temp-dir": "^2.0.0",
|
|
120
|
-
"ts-node": "^10.
|
|
120
|
+
"ts-node": "^10.5.0",
|
|
121
121
|
"ts-node-dev": "^1.1.8",
|
|
122
122
|
"tslib": "^2.3.1",
|
|
123
|
-
"typescript": "^4.5.
|
|
123
|
+
"typescript": "^4.5.5",
|
|
124
124
|
"watchexec-bin": "^1.0.0"
|
|
125
125
|
}
|
|
126
126
|
}
|