forked from lukezirngibl/msal-react-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 859 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "msal-react-v2",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Luke Zirngibl",
"version": "1.0.1",
"keywords": [
"msal",
"react",
"v2"
],
"scripts": {
"build": "tsc",
"patch": " yarn run build && git add -A && git commit -m 'patch' && npm version patch",
"prepare": "install-peers"
},
"files": [
"lib/**/*"
],
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"@azure/msal-browser": "2.1.0",
"@microsoft/microsoft-graph-client": "2.0.0",
"@types/microsoft-graph": "1.18.0"
},
"devDependencies": {
"install-peers-cli": "^2.2.0",
"prettier": "1.19.1",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "^3.8.3"
}
}