-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "axios-jwt",
"version": "4.0.3",
"description": "Axios interceptor to store, use, and refresh tokens for authentication.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jetbridge/axios-jwt"
},
"homepage": "https://github.com/jetbridge/axios-jwt",
"author": "JetBridge Inc.",
"license": "MIT",
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.18.1",
"@types/jest": "29.5.1",
"@types/jsonwebtoken": "9.0.2",
"@types/jwt-decode": "3.1.0",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"eslint": "8.39.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jsonwebtoken": "9.0.0",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^1.15.17",
"axios": "^1.4.0"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
}
},
"dependencies": {
"jwt-decode": "3.1.2",
"ms": "^3.0.0-canary.1"
},
"scripts": {
"build": "tsc",
"start": "tsc -w",
"test": "jest",
"prepack": "tsc"
},
"keywords": [
"axios",
"token",
"jwt",
"refresh",
"authentication",
"authorization",
"header",
"typescript",
"ts"
]
}