-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "react-native-axios-jwt",
"version": "1.8.0",
"description": "Axios interceptor to store, transmit, clear and automatically refresh tokens for authentication in a React Native environment",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mvanroon/react-native-axios-jwt.git"
},
"homepage": "https://github.com/mvanroon/react-native-axios-jwt",
"author": "Michiel van Roon",
"license": "MIT",
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.15.2",
"@types/jest": "^29.0.3",
"@types/jsonwebtoken": "^8.5.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"axios": "^0.27.2",
"axios-mock-adapter": "^1.20.0",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jsonwebtoken": "^8.5.1",
"prettier": "^2.2.1",
"ts-jest": "^29.0.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "*",
"axios": "*"
},
"dependencies": {
"jwt-decode": "^3.1.2"
},
"scripts": {
"build": "tsc",
"start": "tsc -w",
"test": "jest",
"prepack": "tsc"
},
"keywords": [
"react native",
"react-native",
"axios",
"token",
"jwt",
"refresh",
"authentication",
"authorization",
"header",
"typescript",
"ts"
],
"bugs": {
"url": "https://github.com/mvanroon/react-native-axios-jwt/issues"
},
"directories": {
"test": "tests"
}
}