Skip to content

Commit 0424c9b

Browse files
author
Ryan Ashcraft
committed
Initial commit
0 parents  commit 0424c9b

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015", "stage-2"]
3+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "redux-query",
3+
"version": "1.0.0",
4+
"description": "Redux tools for querying remote resources",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [
10+
"redux",
11+
"react",
12+
"query",
13+
"resource",
14+
"remote",
15+
"fetch"
16+
],
17+
"author": "Ryan Ashcraft",
18+
"license": "ISC",
19+
"devDependencies": {
20+
"babel-cli": "^6.1.2",
21+
"babel-core": "^6.2.1",
22+
"babel-loader": "^6.2.0",
23+
"babel-preset-es2015": "^6.1.2",
24+
"babel-preset-stage-2": "^6.3.13",
25+
"react": "^0.14.6",
26+
"react-redux": "^4.0.6",
27+
"redux": "^3.0.5",
28+
"redux-devtools": "^3.0.0",
29+
"redux-devtools-log-monitor": "^1.0.1",
30+
"webpack": "^1.12.9"
31+
}
32+
}

0 commit comments

Comments
 (0)