This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@flowio/redux-fetch",
"version": "0.16.0-0",
"description": "Universal data fetching bindings for React, React Router, and Redux",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rm -rf ./lib ./coverage",
"build": "babel ./src --out-dir ./lib",
"coverage": "cross-env NODE_ENV=test nyc npm test",
"fix": "npm run lint -- --fix",
"lint": "eslint --cache --ext .jsx,.js .",
"test": "mocha ./test/specs/**/*.{js,jsx}",
"prepare": "npm-run-all clean build",
"prepublishOnly": "npm-run-all clean lint coverage build",
"postpublish": "greenkeeper-postpublish"
},
"keywords": [
"fetching",
"isomorphic",
"universal",
"react",
"redux",
"react-router"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flowcommerce/redux-fetch.git"
},
"author": "Flow Commerce",
"contributors": [
"Christian Muñoz <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.12.5",
"hoist-non-react-statics": "^3.3.2",
"react-static-container": "^1.0.2"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^7.0.0",
"react-router": "^3.0.0",
"redux": "^4.0.0",
"redux-thunk": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/register": "^7.12.10",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"deep-freeze": "^0.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"greenkeeper-postpublish": "^2.0.0",
"jsdom": "^16.4.0",
"lodash": "^4.17.4",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.1",
"nyc": "^15.1.0",
"prop-types": "^15.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^7.0.3",
"react-router": "^3.0.3",
"react-test-renderer": "^16.7.0",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.2.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0"
}
}