forked from fatihAydinoglu/redux-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
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
{
"name": "redux-example",
"version": "1.0.0",
"description": "Redux state with immutable.js, normalizr and reselect",
"main": "src/index.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fatihAydinoglu/redux-example.git"
},
"keywords": [],
"author": "Fatih Aydinoglu <fatihaydinoglu@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/fatihAydinoglu/redux-example/issues"
},
"homepage": "https://github.com/fatihAydinoglu/redux-example#readme",
"dependencies": {
"axios": "^0.15.3",
"immutable": "^3.8.1",
"normalizr": "^3.2.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"reselect": "^2.5.4"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^3.15.0",
"eslint-plugin-react": "^6.10.0",
"html-webpack-plugin": "^2.28.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}