Compare commits

..

5 Commits

Author SHA1 Message Date
Andrew Lalis a007acee8d Run formatting.
Build and Deploy Web App / build-and-deploy (push) Successful in 19s Details
2026-03-14 22:58:57 -04:00
Andrew Lalis 8f098f6cac Hopefully got husky working for subdirectory setup. 2026-03-14 22:56:42 -04:00
Andrew Lalis dd447f8788 test 2026-03-14 22:49:53 -04:00
Andrew Lalis e724ef7ea2 test 2026-03-14 22:49:04 -04:00
Andrew Lalis e0b609c7eb Added prettier to pre-commit hook. 2026-03-14 22:48:34 -04:00
3 changed files with 1321 additions and 825 deletions

2
web-app/.husky/pre-commit Executable file
View File

@ -0,0 +1,2 @@
cd web-app
npx lint-staged

2104
web-app/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,39 +13,45 @@
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write src/"
"format": "prettier --write src/",
"prepare": "cd .. && husky web-app/.husky"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.0.1",
"@fortawesome/free-regular-svg-icons": "^7.0.1",
"@fortawesome/free-solid-svg-icons": "^7.0.1",
"@fortawesome/vue-fontawesome": "^3.1.2",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/vue-fontawesome": "^3.1.3",
"@idle-observer/vue3": "^0.2.0",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"pinia": "^3.0.3",
"pinia": "^3.0.4",
"vue": "^3.5.18",
"vue-chartjs": "^5.3.2",
"vue-router": "^4.5.1",
"vue-chartjs": "^5.3.3",
"vue-router": "^4.6.4",
"vue3-select-component": "^0.12.3"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.18.6",
"@vitejs/plugin-vue": "^6.0.1",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^22.19.15",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.36.0",
"eslint": "^9.39.4",
"eslint-plugin-vue": "~10.3.0",
"jiti": "^2.5.1",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.4.0",
"npm-run-all2": "^8.0.4",
"prettier": "3.6.2",
"typescript": "~5.8.0",
"vite": "^7.1.6",
"vite-plugin-vue-devtools": "^8.0.2",
"vue-tsc": "^3.0.7"
"vite": "^7.3.1",
"vite-plugin-vue-devtools": "^8.1.0",
"vue-tsc": "^3.2.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}