diff --git a/examples/json-schema-fhir/package.json b/examples/json-schema-fhir/package.json index b128f91042979..777db261132f6 100644 --- a/examples/json-schema-fhir/package.json +++ b/examples/json-schema-fhir/package.json @@ -7,9 +7,9 @@ "download-fhir-schema": "node scripts/download-fhir-schema.js", "prebuild": "yarn download-fhir-schema", "build": "mesh build", - "start": "mesh start", - "predev": "yarn download-fhir-schema", - "dev": "mesh dev" + "prestart": "yarn download-fhir-schema", + "start": "mesh dev", + "start:prod": "mesh start" }, "dependencies": { "@graphql-mesh/cli": "0.43.6", diff --git a/examples/json-schema-fhir/sandbox.config.json b/examples/json-schema-fhir/sandbox.config.json new file mode 100644 index 0000000000000..549106cc4e106 --- /dev/null +++ b/examples/json-schema-fhir/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "template": "node", + "container": { + "node": "16" + } +}