forked from kettlespace-eng/expo-keycloak
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "expo-auth-keycloak",
"version": "2.0.5",
"description": "Keycloak authentication for react-native apps using Expo.",
"main": "dist/index.js",
"scripts": {
"build": "yarn version:patch && tsc --project .",
"test": "echo \"Error: no test specified\" && exit 1",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version",
"prepare": "yarn version:patch && yarn build"
},
"keywords": [
"auth",
"expo",
"login",
"keycloak",
"oauth",
"openid",
"react native"
],
"author": "John Szafraniec <[email protected]>",
"license": "MIT",
"devDependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.4.1",
"@types/invariant": "^2.2.37",
"@types/react": "^18.3.16",
"@types/react-native": "~0.73.0",
"expo-auth-session": "~6.0.1",
"prettier": "^3.4.2",
"react": "18.3.1",
"typescript": "^5.7.2"
},
"dependencies": {
"expo": "^52.0.18",
"expo-auth-session": "^6.0.1",
"expo-crypto": "^14.0.1",
"react-native": "0.76.5"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.23.0",
"@react-native-community/netinfo": ">=11.0.0",
"expo-random": ">=14.0.0",
"react": ">=18.0.0"
},
"packageManager": "[email protected]"
}