-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 930 Bytes
/
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
{
"name": "epics-react",
"version": "0.1.0",
"description": "Epics web client made with nodejs and react",
"author": "Marcin Lukaszewski <marcin.lukaszewski@outlook.com>",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack-dev-server --hot --inline --devtool eval --progress --colors --content-base build",
"build": "webpack --devtool eval --progress --colors --content-base build",
"server": "node server.js",
"dev": "npm run webpack & npm run server"
},
"dependencies": {
"epics": "0.0.8",
"express": "^4.13.3",
"react": "^0.13.1",
"react-socket": "^0.1.4",
"react-sparklines": "^1.4.2",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7"
},
"devDependencies": {
"babel-core": "^5.8.34",
"babel-loader": "^5.4.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}