-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "reactChat",
"version": "1.0.0",
"description": "a real time chatroom app for react and socket.io",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:webpack",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"start": "node server",
"lint": "eslint src"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.23.0",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"json-loader": "^0.5.4",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"dependencies": {
"babel": "^6.3.13",
"express": "^4.13.3",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"socket.io": "^1.4.4",
"socket.io-client": "^1.4.4",
"webpack": "^1.12.9"
}
}