-
Notifications
You must be signed in to change notification settings - Fork 442
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "rnaa",
"version": "1.0.0",
"private": true,
"description": "React Native bridge for AppAuth for supporting any OAuth 2 provider",
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/react-native-app-auth"
},
"bugs": {
"url": "https://github.com/FormidableLabs/react-native-app-auth/issues"
},
"homepage": "https://github.com/FormidableLabs/react-native-app-auth",
"keywords": [
"react",
"react-native",
"auth",
"authentication",
"oauth",
"oauth2",
"appauth"
],
"license": "MIT",
"scripts": {
"changeset": "changeset",
"lint": "yarn workspace react-native-app-auth lint",
"test": "yarn workspace react-native-app-auth test",
"start:demo:android": "yarn workspace rnaa-demo android",
"start:demo:ios": "yarn workspace rnaa-demo ios"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@svitejs/changesets-changelog-github-compact": "^0.1.1",
"babel-eslint": "10.0.3",
"eslint": "6.8.0",
"eslint-config-formidable": "4.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jest": "23.3.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"prettier": "1.19.1"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/@react-native",
"**/@react-native/**",
"**/react-native-app-auth/**"
]
},
"engines": {
"node": ">=18.0.0"
}
}