Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22,821 changes: 9,179 additions & 13,642 deletions EHR_App/package-lock.json

Large diffs are not rendered by default.

23 changes: 12 additions & 11 deletions EHR_App/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"setup": "npm ci --legacy-peer-deps",
"build": "npm run build-dev",
"build-analyze": "cross-env ANALYZE=true npm run build",
"build-dev": "npm run clean && cross-env NODE_ENV=development webpack --config node_modules/@labkey/build/webpack/dev.config.js --color",
"build-prod": "npm run clean && cross-env NODE_ENV=production webpack --config node_modules/@labkey/build/webpack/prod.config.js --color --progress --profile",
"build-dev": "npm run clean && cross-env NODE_ENV=development rspack build --config node_modules/@labkey/build/configs/dev.config.js",
"build-prod": "npm run clean && cross-env NODE_ENV=production rspack build --config node_modules/@labkey/build/configs/prod.config.js",
"clean": "rimraf resources/web/EHR_App/gen && rimraf resources/views/gen && rimraf resources/web/gen",
"start": "cross-env NODE_ENV=development webpack serve --config node_modules/@labkey/build/webpack/watch.config.js",
"start": "cross-env NODE_ENV=development rspack serve --config node_modules/@labkey/build/configs/watch.config.js",
"start-link": "cross-env LINK=true npm run start",
"test": "cross-env NODE_ENV=test jest",
"test-integration": "cross-env NODE_ENV=test jest -c test/js/jest.config.integration.js --maxWorkers 1",
Expand All @@ -21,12 +21,12 @@
"lint-branch-fix": "node lint.diff.mjs --currentBranch --fix"
},
"dependencies": {
"@labkey/components": "7.42.1",
"@labkey/ehr": "0.0.8"
"@labkey/components": "7.55.2",
"@labkey/ehr": "0.0.9"
},
"devDependencies": {
"@labkey/build": "9.1.5",
"@labkey/eslint-config": "1.2.2",
"@labkey/build": "10.1.0",
"@labkey/eslint-config": "1.2.3",
"@types/jest": "30.0.0",
"@types/react": "18.3.31",
"@types/react-dom": "18.3.7",
Expand All @@ -38,10 +38,11 @@
"jest-cli": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"jest-teamcity-reporter": "0.9.0",
"ts-jest": "29.4.11",
"uuid": "14.0.0"
"ts-jest": "29.4.12"
},
"overrides": {
"uuid": "14.0.0"
"allowScripts": {
"@parcel/watcher@2.6.0": true,
"fsevents@2.3.3": true,
"unrs-resolver@1.12.2": true
}
}
2 changes: 1 addition & 1 deletion EHR_App/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./node_modules/@labkey/build/webpack/tsconfig.json",
"extends": "./node_modules/@labkey/build/configs/tsconfig.json",
"include": ["src/client/**/*"],
"exclude": ["node_modules"]
}
Loading