-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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": "sample-chat-app",
"version": "1.0.0",
"description": "Real-time chat app",
"scripts": {
"start": "node server.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/bebersohl/sample-chat-app.git"
},
"author": "Brandon Ebersohl <[email protected]>",
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-1": "6.22.0",
"css-loader": "0.26.1",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"express": "^4.13.4",
"react-hot-loader": "^1.3.0",
"redux-log-diff": "1.0.2",
"style-loader": "0.13.1",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"material-ui": "0.16.7",
"react": "^0.14.6",
"react-addons-css-transition-group": "15.4.2",
"react-dom": "^0.14.6",
"react-redux": "5.0.2",
"redux": "3.6.0",
"socket.io": "1.7.2",
"socket.io-client": "1.7.2"
}
}