-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #361 from bluehalo/360-update-to-latest-dependency
Update dependency and rename to bluehalo
- Loading branch information
Showing
63 changed files
with
375 additions
and
18,481 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
node_modules | ||
**/node_modules/** | ||
**/dist/** | ||
**/__tmp__/** | ||
lerna.json | ||
coverage/ | ||
coverage/ | ||
**/resources/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# BlueHalo FHIR API Server | ||
# Bluehalo FHIR API Server | ||
|
||
> A Secure Rest implementation for the [HL7 FHIR Specification](https://www.hl7.org/fhir/). For API documentation, please see [our documents](https://github.com/bluehalo/node-fhir-server-core/tree/master/docs). | ||
|
@@ -10,7 +10,7 @@ The framework defines a core server, `node-fhir-server-core`, a simple, secure N | |
|
||
For an example implementation using MongoDB, please refer to our Github repository that we used for the ONC FHIR Secure API Server Showdown Challenge: [https://github.com/bluehalo/node-fhir-server-mongo](https://github.com/bluehalo/node-fhir-server-mongo). | ||
|
||
<img src="https://www.asymmetrik.com/wp-content/uploads/2018/01/FHIR-Server-Architecture_Update.png" width="800"> | ||
<img src="https://www.bluehalo.com/wp-content/uploads/2018/01/FHIR-Server-Architecture_Update.png" width="800" alt=""> | ||
|
||
## [email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
const globals = require('globals'); | ||
const js = require('@eslint/js'); | ||
const { FlatCompat } = require('@eslint/eslintrc'); | ||
|
||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all, | ||
}); | ||
|
||
module.exports = [ | ||
...compat.extends('eslint:recommended', 'prettier'), | ||
{ | ||
ignores: [ | ||
'eslint.config.js', | ||
'coverage/**', | ||
'node_modules/**', | ||
'**/node_modules/**', | ||
'**/dist/**/*', | ||
'**/__tmp__/**/*', | ||
'lerna.json', | ||
'**/resources/**', | ||
], | ||
}, | ||
{ | ||
languageOptions: { | ||
globals: { | ||
...globals.browser, | ||
...globals.jest, | ||
...globals.node, | ||
}, | ||
ecmaVersion: 8, | ||
sourceType: 'commonjs', | ||
}, | ||
|
||
rules: { | ||
'no-mixed-spaces-and-tabs': [0, 'smart-tabs'], | ||
quotes: [2, 'single', 'avoid-escape'], | ||
'no-compare-neg-zero': 0, | ||
'no-console': 0, | ||
'no-debugger': 2, | ||
'no-array-constructor': 2, | ||
'no-caller': 2, | ||
'no-catch-shadow': 2, | ||
'no-eval': 2, | ||
'no-extend-native': 2, | ||
'no-extra-bind': 2, | ||
'no-implied-eval': 2, | ||
'no-irregular-whitespace': [2, { skipComments: true }], | ||
'no-iterator': 2, | ||
'no-label-var': 2, | ||
'no-labels': 2, | ||
'no-lone-blocks': 2, | ||
'no-loop-func': 2, | ||
'no-multi-spaces': 2, | ||
'no-multi-str': 2, | ||
'no-native-reassign': 2, | ||
'no-new': 2, | ||
'no-new-func': 2, | ||
'no-new-object': 2, | ||
'no-new-wrappers': 2, | ||
'no-octal-escape': 2, | ||
'no-proto': 2, | ||
'no-return-assign': 2, | ||
'no-script-url': 2, | ||
'no-sequences': 2, | ||
'no-shadow': 0, | ||
'no-shadow-restricted-names': 2, | ||
'no-spaced-func': 2, | ||
'no-trailing-spaces': 2, | ||
'no-undef-init': 2, | ||
'no-unused-expressions': 2, | ||
'no-unused-vars': 'off', | ||
'no-use-before-define': 2, | ||
'no-useless-escape': 0, | ||
'no-with': 2, | ||
'comma-spacing': 2, | ||
curly: [2, 'all'], | ||
'dot-notation': [2, { allowKeywords: true }], | ||
'eol-last': 2, | ||
'no-extra-parens': [2, 'functions'], | ||
eqeqeq: 2, | ||
'key-spacing': [2, { beforeColon: false, afterColon: true }], | ||
'new-cap': 2, | ||
'new-parens': 2, | ||
semi: 2, | ||
'semi-spacing': [2, { before: false, after: true }], | ||
'space-infix-ops': 2, | ||
'keyword-spacing': 2, | ||
'space-unary-ops': [2, { words: true, nonwords: false }], | ||
yoda: [2, 'never'], | ||
}, | ||
}, | ||
]; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "node-fhir-server-core-project", | ||
"private": true, | ||
"version": "2.0.11", | ||
"version": "2.1.0", | ||
"description": "Node FHIR Rest API Server and surrounding ecosystem", | ||
"homepage": "https://github.com/bluehalo/node-fhir-server-core#readme", | ||
"bugs": { | ||
|
@@ -12,7 +12,7 @@ | |
"url": "git+https://github.com/bluehalo/node-fhir-server-core.git" | ||
}, | ||
"license": "MIT", | ||
"author": "BlueHalo", | ||
"author": "Bluehalo", | ||
"contributors": [ | ||
"Robert Winterbottom <[email protected]>", | ||
"Jon Lee <[email protected]>", | ||
|
@@ -27,7 +27,7 @@ | |
"prettier-fix": "prettier --write \"**/*.{js,mjs,cjs,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,less,graphql,graphqls,gql}\"", | ||
"lint": "run-p prettier-check lint-eslint", | ||
"lint-staged": "lint-staged", | ||
"lint-eslint": "eslint . --ext js,jsx,ts,tsx" | ||
"lint-eslint": "eslint . '**/*.{js,jsx,ts,tsx}'" | ||
}, | ||
"jest": { | ||
"clearMocks": true, | ||
|
@@ -43,11 +43,13 @@ | |
"verbose": true | ||
}, | ||
"devDependencies": { | ||
"eslint": "^8.33.0", | ||
"jest-cli": "^29.4.1", | ||
"lerna": "^8.0.2", | ||
"eslint": "^9.9", | ||
"eslint-config-prettier": "^9.1.0", | ||
"globals": "^15.9.0", | ||
"jest-cli": "^29.7.0", | ||
"lerna": "^8.1.8", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.8.3", | ||
"prettier": "^3.3.3", | ||
"yarn-audit-fix": "^10.0.7" | ||
}, | ||
"engines": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.