-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "redux-saga-chat-example",
"description": "A chat example using redux-saga and Socket.IO.",
"repository": {
"type": "git",
"url": "https://github.com/kuy/redux-saga-chat-example.git"
},
"homepage": "https://github.com/kuy/redux-saga-chat-example",
"scripts": {
"start": "./node_modules/.bin/babel-node src/server/index.js",
"client": "./node_modules/.bin/webpack-dev-server --progress --color --content-base public/"
},
"authors": [
"Yuki Kodama <[email protected]>"
],
"license": "MIT",
"dependencies": {
"koa": "^1.2.0",
"koa-socket": "^4.3.0",
"material-ui": "^0.15.0-beta.2",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^2.0.0",
"redux": "^3.5.2",
"redux-act": "^0.4.0",
"redux-logger": "^2.6.1",
"redux-saga": "^0.10.2",
"socket.io-client": "^1.4.5"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
}
}