forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.22 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.22 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@azure/msal-react",
"version": "1.0.0-alpha.3",
"author": {
"name": "Microsoft",
"email": "nugetaad@microsoft.com",
"url": "https://www.microsoft.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"description": "Microsoft Authentication Library for React",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --tsconfig ./tsconfig.build.json",
"build:modules:watch": "tsdx watch --verbose",
"test": "tsdx test .*.spec.*",
"test:watch": "tsdx test .*.spec.* --watch",
"test:coverage": "tsdx test .*.spec.* --coverage",
"lint": "cd ../../ && npm run lint:react",
"lint:fix": "npm run lint -- -- --fix",
"build:all": "npm run build:common && npm run build:browser && npm run build",
"build:browser": "cd ../msal-browser && npm run build",
"build:common": "cd ../msal-common && npm run build",
"prepack": "npm run build:all",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"@azure/msal-browser": "^2.10.0",
"react": "^16.13.0 || ^17"
},
"module": "dist/msal-react.esm.js",
"devDependencies": {
"@azure/msal-browser": "^2.10.0",
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-docs": "^6.1.10",
"@storybook/addon-links": "^6.1.10",
"@storybook/addon-storysource": "^6.1.10",
"@storybook/addons": "^6.1.10",
"@storybook/react": "^6.1.10",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"jest": "^26.6.1",
"jest-environment-jsdom-fifteen": "^1.0.2",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"dependencies": {}
}