Skip to content
Merged

Dev #55

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
6aa368d
Merge pull request #49 from mcode/main
zacharyrobin Oct 16, 2023
1c44ed4
Bump @babel/traverse from 7.20.13 to 7.23.2 in /frontend
dependabot[bot] Oct 18, 2023
13e9c64
Update frontend package-lock.json
jtquach1 Oct 23, 2023
6cc5c03
Update lint scripts, Prettier scripts, Prettier config to support JSO…
jtquach1 Oct 23, 2023
bdf97d3
Update display of ETASU responses such that only the Patient Status U…
jtquach1 Oct 24, 2023
965c105
Run Eslint and Prettier on fix mode for frontend and backend
jtquach1 Oct 24, 2023
3f741af
Merge branch 'dev' into dependabot/npm_and_yarn/frontend/babel/traver…
jtquach1 Oct 24, 2023
713e796
Merge pull request #50 from mcode/dependabot/npm_and_yarn/frontend/ba…
jtquach1 Oct 25, 2023
d86308d
Merge branch 'dev' into descending-order-forms
jtquach1 Oct 25, 2023
6684395
Merge pull request #51 from mcode/descending-order-forms
plarocque4 Oct 26, 2023
e7dd3f2
Bump axios from 1.2.6 to 1.6.0 in /frontend
dependabot[bot] Nov 11, 2023
14659e7
Bump axios from 1.4.0 to 1.6.0 in /backend
dependabot[bot] Nov 11, 2023
407db6e
Merge pull request #53 from mcode/dependabot/npm_and_yarn/backend/axi…
smalho01 Nov 13, 2023
71560bf
Merge branch 'dev' into dependabot/npm_and_yarn/frontend/axios-1.6.0
smalho01 Nov 13, 2023
bf86746
Merge pull request #52 from mcode/dependabot/npm_and_yarn/frontend/ax…
smalho01 Nov 13, 2023
f3bcb8f
Bump @adobe/css-tools from 4.3.1 to 4.3.2 in /frontend
dependabot[bot] Dec 1, 2023
cbb32b7
Merge branch 'dev' into dependabot/npm_and_yarn/frontend/adobe/css-to…
smalho01 Dec 1, 2023
fd3ca3d
Merge pull request #54 from mcode/dependabot/npm_and_yarn/frontend/ad…
smalho01 Dec 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion backend/.prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
dist
dist
node_modules
package-lock.json
10 changes: 9 additions & 1 deletion backend/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@
"endOfLine": "auto",
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true
"singleQuote": true,
"overrides": [
{
"files": "*.json",
"options": {
"singleQuote": false
}
}
]
}
8 changes: 4 additions & 4 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"dependencies": {
"@types/node": "^16.18.2",
"axios": "^1.2.6",
"axios": "^1.6.0",
"body-parser": "^1.20.1",
"body-parser-xml": "^2.0.3",
"cors": "^2.8.5",
Expand Down Expand Up @@ -51,9 +51,9 @@
"start": "ts-node-dev src/server.ts",
"test": "mocha",
"build": "tsc",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\""
"lint": "tsc && eslint \"**/*.{js,ts,jsx,tsx}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts,jsx,tsx}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts,jsx,tsx,json}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts,jsx,tsx,json}\""
}
}
4 changes: 3 additions & 1 deletion frontend/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
dist
build
build
node_modules
package-lock.json
12 changes: 10 additions & 2 deletions frontend/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@
"endOfLine": "auto",
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true
}
"singleQuote": true,
"overrides": [
{
"files": "*.json",
"options": {
"singleQuote": false
}
}
]
}
Loading