-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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": "redux-data-fetching",
"version": "2.3.5",
"description": "Redux and Normalizr based data managment utilities",
"main": "dist/bundle.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack",
"build:watch": "webpack --watch"
},
"keywords": ["data", "fetch", "redux", "normalizr"],
"author": "alanzanattadev",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.11.1",
"enzyme": "^2.9.1",
"flow-bin": "^0.48.0",
"flow-typed": "^2.1.2",
"graphql": "^0.10.5",
"jest": "^20.0.4",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-test-renderer": "^15.6.1",
"recompose": "^0.24.0",
"redux": "^3.5.2",
"redux-request-state": "^1.1.0",
"redux-thunk": "^2.1.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"immutable": "3",
"normalizr": "^3.2.1"
},
"peerDependencies": {
"graphql": "^0.10.5",
"react": "^15.6.1"
}
}