forked from jetbridge/axios-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "axios-jwt-cookies",
"version": "0.0.1",
"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/DaveITpl/axios-jwt-cookies"
},
"homepage": "https://github.com/DaveITpl/axios-jwt-cookies",
"author": "JetBridge Inc. & DaveITpl",
"license": "WTFPL",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.1.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/jwt-decode": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"jest": "^29.1.2",
"jsonwebtoken": "^8.5.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^1.17.10",
"axios": "^0.27.0"
},
"dependencies": {
"jwt-decode": "^3.1.2"
},
"scripts": {
"build": "tsc",
"start": "tsc -w",
"test": "jest",
"prepack": "tsc"
},
"keywords": [
"axios",
"token",
"jwt",
"refresh",
"authentication",
"authorization",
"header",
"typescript",
"ts",
"cookies"
]
}