forked from balgamat/expo-keycloak
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "expo-keycloak",
"version": "1.0.21",
"description": "Keycloak authentication for react-native apps using Expo.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project .",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm-auto-version",
"postpublish": "git push origin --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/balgamat/expo-keycloak.git"
},
"keywords": [
"auth",
"expo",
"login",
"keycloak",
"oauth",
"openid",
"react native"
],
"author": "Matěj Balga <matej.balga@icloud.com>",
"license": "MIT",
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"@types/react-native": "^0.63.40",
"expo": "^40.0.0",
"expo-auth-session": "^2.0.0",
"expo-random": "^9.0.0",
"npm-auto-version": "^1.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^16.13.1",
"typescript": "^4.1.3"
},
"dependencies": {},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"expo": "^39.0.0",
"expo-auth-session": "^2.0.0",
"expo-random": "^9.0.0",
"react": "^16.13.1"
}
}