-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f48333f
commit b0edb0b
Showing
11 changed files
with
1,296 additions
and
572 deletions.
There are no files selected for viewing
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,3 +1,3 @@ | ||
# Core team members for FHIR at Asymmetrik | ||
# Core team members for FHIR at Bluehalo | ||
|
||
* @Robert-W @jonterrylee @lu-c |
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,3 @@ | ||
node_modules | ||
coverage/ | ||
**/services/** |
File renamed without changes.
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,90 @@ | ||
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/**', | ||
'**/services/**', | ||
], | ||
}, | ||
{ | ||
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': [2, { vars: 'all', args: 'after-used', argsIgnorePattern: '^_' }], | ||
'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 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,9 +1,9 @@ | ||
{ | ||
"name": "@asymmetrik/node-fhir-server-mongo", | ||
"version": "2.0.0", | ||
"description": "FHIR Facade Server implementing @asymmetrik/node-fhir-server-core", | ||
"name": "@bluehalo/node-fhir-server-mongo", | ||
"version": "2.1.0", | ||
"description": "FHIR Facade Server implementing @bluehalo/node-fhir-server-core", | ||
"main": "src/index.js", | ||
"repository": "https://github.com/Asymmetrik/node-fhir-server-mongo.git", | ||
"repository": "https://github.com/bluehalo/node-fhir-server-mongo.git", | ||
"contributors": [ | ||
"Robert Winterbottom <[email protected]>", | ||
"Jon Lee <[email protected]>", | ||
|
@@ -38,21 +38,23 @@ | |
] | ||
}, | ||
"dependencies": { | ||
"@asymmetrik/node-fhir-server-core": "^2.2.5", | ||
"@snyk/protect": "^1.1096.0", | ||
"@bluehalo/node-fhir-server-core": "^2.3.0", | ||
"@snyk/protect": "^1.1293.0", | ||
"fast-json-patch": "^3.1.1", | ||
"moment-timezone": "^0.5.40", | ||
"moment-timezone": "^0.5.45", | ||
"mongo": "^0.1.0", | ||
"object-hash": "^3.0.0", | ||
"snyk": "^1.1096.0", | ||
"snyk": "^1.1292.4", | ||
"var": "^0.4.0" | ||
}, | ||
"devDependencies": { | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.33.0", | ||
"jest": "^29.4.1", | ||
"nodemon": "^2.0.20", | ||
"prettier": "^2.8.3" | ||
"eslint": "^9.9", | ||
"eslint-config-prettier": "^9.1.0", | ||
"globals": "^15.9.0", | ||
"jest": "^29.7.0", | ||
"nodemon": "^3.1.4", | ||
"prettier": "^3.3.3" | ||
}, | ||
"private": false, | ||
"snyk": true | ||
|
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.