-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "axios-refresh-me",
"version": "0.0.24",
"description": "Axios wrapper for refresh token and retry request",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup --dts src/index.ts",
"dev": "tsup --watch",
"lint:fix": "eslint --fix --max-warnings=0 --report-unused-disable-directives --ignore-path .gitignore 'src/**/*.{ts,tsx}'",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/D4r1inG/axios-refresh-me.git"
},
"keywords": [
"refresh-token",
"axios",
"retry-request",
"axios-wrapper"
],
"author": "quannt86",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"dotenv-cli": "^7.2.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.2.5",
"tsup": "^6.7.0",
"typescript": "^5.1.3"
}
}