-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "mqtt-chat",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "./node_modules/.bin/webpack --config webpack.config.js",
"build-prod": "./node_modules/.bin/webpack -p --config webpack.config.js",
"dev": "nodemon -i public/javascript/index_bundle.js -e js,jsx,css,html -x 'npm run build && npm start'"
},
"dependencies": {
"aedes": "^0.30.1",
"axios": "^0.17.0",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"express": "^4.16.2",
"ioredis": "^3.1.4",
"morgan": "^1.9.0",
"mqemitter-redis": "^2.2.0",
"mqtt": "^2.13.1",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"serve-favicon": "^2.4.5",
"websocket-stream": "^5.0.1",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"style-loader": "^0.18.1",
"webpack": "^2.7.0"
}
}