This repository has been archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
90 lines (90 loc) · 2.36 KB
/
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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-native-msal",
"version": "1.0.3",
"description": "React Native wrapper for iOS and Android",
"main": "build/index.js",
"types": "build/index.d.ts",
"source": "src/index",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"expo-module": "expo-module",
"lint": "expo-module lint",
"prepare": "expo-module prepare && husky install",
"prepublishOnly": "expo-module prepublishOnly",
"test": "expo-module test",
"example": "yarn --cwd example",
"pods": "cd example && npx pod-install",
"bootstrap": "yarn example && yarn && yarn pods",
"predeploy": "yarn example build:web",
"deploy": "gh-pages -d example/web-build"
},
"keywords": [
"react-native",
"ios",
"android",
"msal",
"azure",
"b2c",
"aad",
"expo"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stashenergy/react-native-msal.git"
},
"author": "Stash Energy <[email protected]> (https://stash.energy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stashenergy/react-native-msal/issues"
},
"homepage": "https://github.com/stashenergy/react-native-msal#readme",
"dependencies": {
"@azure/msal-browser": "^2.1.0",
"@expo/config-plugins": "^4.0.6"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@react-native-community/eslint-config": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.5",
"@types/react-native": "^0.66.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"expo-module-scripts": "^2.0.0",
"gh-pages": "^3.1.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"metro-react-native-babel-preset": "^0.66.0",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-native": "^0.64.1",
"semantic-release": "^19.0.2",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"printWidth": 120
}
}