-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 870 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 870 Bytes
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
{
"name": "axios-multi-auth-interception-demo",
"version": "0.0.1",
"description": "A simple app to demostrate axios multiple request authentication with refresh token",
"main": "src/script.js",
"scripts": {
"dev": "parcel index.html -p 3000 --open",
"serve": "json-server -p 3001 --watch db.json -r routes.json -m auth.middleware.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"axios",
"token",
"interceptors"
],
"author": "godofbrowser",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"path-to-regexp": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"json-server": "^0.15.1",
"parcel-bundler": "^1.12.3"
},
"babel": {
"plugins": [
"@babel/proposal-class-properties"
]
}
}