-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.47 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
{
"name": "immutable-redux",
"version": "1.0.0",
"description": "A playground for working with react, redux, and immutablejs",
"scripts": {
"start": "node server.js",
"build": "webpack -p --config webpack.production.config.js --progress",
"lint": "./node_modules/.bin/eslint src --max-warnings 0"
},
"repository": {
"type": "git",
"url": "https://github.com/kinseyost/immutable-redux.git"
},
"keywords": [
"react",
"redux",
"immutablejs",
"immutable",
"reactjs",
"boilerplate",
"hot",
"react-router",
"reload",
"hmr",
"live",
"edit",
"webpack",
"heroku",
"mongo",
"mongodb",
"socketio",
"web-sockets",
"socket-io",
"mongoose",
"nodemon"
],
"author": "Kinsey Van Ost <[email protected]> (http://github.com/kinseyost)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kinseyost/immutable-redux/issues"
},
"homepage": "https://github.com/kinseyost/immutable-redux",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.24.1",
"css-loader": "^0.23.1",
"eslint": "^2.10.2",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.21.0",
"nodemon": "^1.9.2",
"postcss-loader": "^0.9.1",
"postcss-map": "^0.8.0",
"postcss-nested": "^1.0.0",
"react-addons-perf": "^15.2.0",
"react-hot-loader": "^1.3.0",
"stats-webpack-plugin": "^0.3.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"immutable": "^3.8.1",
"react": "^15.2.0",
"react-addons-css-transition-group": "^15.3.0",
"react-dom": "^15.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-toggle": "^2.1.1",
"redux": "^3.5.2",
"redux-immutablejs": "0.0.8",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.3",
"socket.io-client": "^2.0.1"
}
}