-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "react-redux-axios-example",
"version": "0.0.1",
"description": "Example async data fetch with spinner",
"scripts": {
"start": "node webpack/server.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/oviava/react-redux-axios-example.git"
},
"keywords": [
"react",
"reactjs",
"example",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"author": "Ovidiu Ava <[email protected]> (http://github.com/oviava)",
"license": "MIT",
"bugs": {
"url": "https://github.com/oviava/react-redux-axios-example/issues"
},
"homepage": "https://github.com/oviava/react-redux-axios-example",
"devDependencies": {
"babel-core": "5.x",
"babel-eslint": "latest",
"babel-loader": "5.x",
"css-loader": "latest",
"eslint": "latest",
"eslint-plugin-react": "latest",
"extract-text-webpack-plugin": "latest",
"file-loader": "latest",
"react-hot-loader": "latest",
"redux-devtools": "^2.1.2",
"style-loader": "latest",
"url-loader": "latest",
"webpack": "latest",
"webpack-dev-server": "latest",
"raw-loader": "latest"
},
"dependencies": {
"axios": "latest",
"bootstrap": "^3.3.5",
"history": "1.13.x",
"react": "latest",
"react-dom": "^0.14.3",
"react-redux": "latest",
"react-router": "latest",
"redux": "latest",
"redux-react-router": "latest",
"redux-thunk": "latest"
}
}