Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8ddea7f
this is all the updates for having the patients.csv completed, so the…
ElanaC Aug 20, 2025
411c79e
backend work for exporting complete
ElanaC Sep 6, 2025
9646dff
backend data export implementations completed
ElanaC Sep 6, 2025
436a18e
fixed up backend and tried out frontend, putting button on navbar to …
ElanaC Sep 10, 2025
96ae173
fixed up backend and tried out frontend, putting button on navbar to …
ElanaC Sep 10, 2025
3c7953a
fixed backend with comments, tried frontend (temporarily threw it in …
ElanaC Sep 10, 2025
2abbbfa
Add frontend export functionality
ElanaC Sep 10, 2025
4fe722b
export button (works?)
ElanaC Sep 13, 2025
c4ac34a
convert to using webpack
mattwalo32 Sep 13, 2025
45ce81e
add separate prod and dev configs
mattwalo32 Sep 13, 2025
470ff7c
new changes
ElanaC Sep 27, 2025
d75b308
new changes
ElanaC Sep 27, 2025
f1dfafd
correct changes?
ElanaC Sep 27, 2025
0d0d340
start changing file format
mattwalo32 Oct 4, 2025
1b1ae16
refactor
mattwalo32 Oct 5, 2025
62ed9de
update file formats
mattwalo32 Oct 18, 2025
13c5d32
update s3 utils
mattwalo32 Oct 18, 2025
284df0f
put field groups in their own file
mattwalo32 Oct 19, 2025
0a4f667
remove data files
mattwalo32 Oct 19, 2025
93f0248
remove gitignore
mattwalo32 Oct 19, 2025
5c5489e
run linter
mattwalo32 Oct 19, 2025
8bfa0b6
clenaup
mattwalo32 Oct 19, 2025
a3739a6
move export button to nav link
mattwalo32 Oct 19, 2025
2cdfbdc
set title for export
mattwalo32 Oct 19, 2025
e660dd2
run linter
mattwalo32 Oct 19, 2025
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
File renamed without changes.
16 changes: 11 additions & 5 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,35 @@
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.496.0",
"@aws-sdk/client-s3": "^3.496.0",
"@fast-csv/format": "^5.0.5",
"archiver": "^7.0.0",
"aws-sdk-mock": "^5.1.0",
"axios": "^1.6.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.2.0",
"file-type": "^21.0.0",
"helmet": "^7.1.0",
"join-images": "^1.1.5",
"lodash": "^4.17.21",
"loglevel": "^1.7.1",
"mongodb-memory-server": "^7.4.0",
"mongoose": "^6.0.6",
"mongoose": "^6.13.8",
"mongoose-encryption": "^2.1.0",
"node-2fa": "^2.0.2",
"omit-deep-lodash": "^1.1.5",
"pad": "^3.2.0",
"pdf2pic": "^3.1.3",
"sharp": "^0.34.3",
"supertest": "^6.1.3",
"twilio": "^3.71.1"
},
"devDependencies": {
"@3dp4me/types": "workspace:*",
"@smithy/types": "^4.1.0",
"@types/archiver": "^6.0.0",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
Expand All @@ -45,6 +50,7 @@
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"exports": "./build/index.js",
"jest": {
"testEnvironment": "node",
"testTimeout": 60000,
Expand All @@ -54,13 +60,13 @@
]
},
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "webpack",
"build": "webpack --config webpack.prod.js",
"clean": "rimraf .turbo build dist node_modules",
"lint": "eslint --fix src/**/*.ts",
"lint:check": "eslint src/**/*.ts",
"start": "rm -rf ./dist && tsc && doppler run -- node ./dist/src/index.js",
"start": "rm -rf ./dist && webpack --config webpack.dev.js && doppler run -- node ./build/bundle.js",
"test": "cross-env S3_BUCKET_NAME=test jest --runInBand --forceExit"
}
},
"type": "module"
}
Loading
Loading