-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update dashboard samples to use TokenCredentialProvider (#981)
* feat: update developer-assist-dashboard * feat: update dashboard to use latest SDK apis
- Loading branch information
1 parent
706fd1a
commit f8f7e71
Showing
3 changed files
with
178 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
{ | ||
"name": "teamsfx-template-api", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev", | ||
"dev": "func start --typescript --language-worker=\"--inspect=9229\" --port \"7071\" --cors \"*\"", | ||
"build": "tsc", | ||
"watch:teamsfx": "tsc -w", | ||
"prestart": "npm run build", | ||
"start": "npx func start", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"dependencies": { | ||
"@azure/functions": "^1.2.2", | ||
"@microsoft/teamsfx": "^2.0.0", | ||
"isomorphic-fetch": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"env-cmd": "^10.1.0", | ||
"typescript": "^4.4.4" | ||
} | ||
"name": "teamsfx-template-api", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev", | ||
"dev": "func start --typescript --language-worker=\"--inspect=9229\" --port \"7071\" --cors \"*\"", | ||
"build": "tsc", | ||
"watch:teamsfx": "tsc -w", | ||
"prestart": "npm run build", | ||
"start": "npx func start", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"dependencies": { | ||
"@azure/functions": "^1.2.2", | ||
"@microsoft/teamsfx": "^2.0.0", | ||
"@microsoft/microsoft-graph-client": "^3.0.5", | ||
"isomorphic-fetch": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"env-cmd": "^10.1.0", | ||
"typescript": "^4.4.4" | ||
} | ||
} |