-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
130 lines (130 loc) · 4.34 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@kinde-oss/react-native-sdk-0-6x",
"version": "1.2.0",
"description": "Kinde React Native SDK for authentication",
"license": "MIT",
"homepage": "https://kinde.com",
"repository": {
"type": "git",
"url": "https://github.com/kinde-oss/react-native-sdk-0-6x"
},
"bugs": "https://github.com/kinde-oss/react-native-sdk-0-6x",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".js,.ts\"",
"prepare": "npm run build && husky install",
"test": "jest"
},
"author": {
"name": "Kinde",
"email": "[email protected]",
"url": "https://kinde.com"
},
"browser": {
"fs": false
},
"keywords": [
"Kinde",
"login",
"Authorization Code Grant Flow",
"PKCE",
"Single Page Application authentication",
"React Native authentication"
],
"dependencies": {
"@babel/runtime": "^7.19.4",
"crypto-js": "3.3.0",
"expo-constants": "^14.2.1",
"expo-modules-core": "^1.2.6",
"expo-secure-store": "*",
"expo-web-browser": "*",
"jwt-decode": "^3.1.2",
"qs": "^6.11.0",
"react-native-inappbrowser-reborn": ">= 3.7",
"react-native-keychain": ">= 8.0",
"superagent": "^7.0.2",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.0.0",
"@types/crypto-js": "^3.1.47",
"@types/node": "^18.11.7",
"@types/react-native": "^0.70.6",
"@types/url-parse": "^1.4.8",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "23.6.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "23.6.0",
"lint-staged": "^13.0.3",
"metro-react-native-babel-preset": "^0.73.3",
"prettier": "^2.7.1",
"react": "16.8.6",
"react-native": "0.60",
"react-test-renderer": "16.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^23.10.5",
"typescript": "^4.8.4"
},
"peerDependencies": {
"expo-secure-store": "*",
"expo-web-browser": "*",
"react-native": ">= 0.60",
"react-native-inappbrowser-reborn": ">= 3.7",
"react-native-keychain": ">= 8.0"
},
"files": [
"dist"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write .",
"npx eslint --fix"
]
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"modulePaths": [
"<rootDir>"
],
"cacheDirectory": ".jest/cache"
}
}