feature/4-pilots---add

This commit is contained in:
2024-06-22 07:14:30 -05:00
parent 7bcddf9d13
commit 9d5a6f7d09
35 changed files with 1430 additions and 3201 deletions

View File

@@ -7,6 +7,7 @@
"tests"
],
"scripts": {
"start": "concurrently 'npm run start:azure -w api' 'wait-on tcp:0.0.0.0:7071 && npm run dev -w app'",
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",
"lint": "npm run lint -w api && npm run lint -w app",
"prepare": "husky || true"
@@ -14,15 +15,21 @@
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"concurrently": "^8.2.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5"
"prettier": "3.2.5",
"wait-on": "^7.2.0"
},
"lint-staged": {
"**/*": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\" --ignore-unknown"
},
"dependencies": {
"@microsoft/mgt-element": "^4.2.2",
"@microsoft/mgt-msal2-provider": "^4.2.2"
}
}