forked from svrcekmichal/redux-axios-middleware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 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
{
"name": "redux-axios-middleware",
"version": "5.0.0",
"description": "Redux middleware for fetching data with axios HTTP client",
"main": "dist/bundle.js",
"scripts": {
"prepublish": "npm run lint && npm run build",
"build": "webpack --mode production",
"lint": "eslint -c .eslintrc src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliberty/redux-axios-middleware.git"
},
"author": "Michal Svrcek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliberty/redux-axios-middleware/issues"
},
"homepage": "https://github.com/eliberty/redux-axios-middleware",
"peerDependencies": {
"axios": ">= 0.18"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-preset-airbnb": "^3.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"redux": "^4.0.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}