-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.04 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "bhome-realtime",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js 3105 26379 127.0.0.1 --exec babel-node --presets es2015,stage-2",
"watch": "nodemon watch.js 26379 127.0.0.1 --exec babel-node --presets es2015,stage-2",
"single": "nodemon single.js 3105 26379 127.0.0.1 --exec babel-node --presets es2015,stage-2",
"build": "babel index.js watch.js single.js observer.js client.js config.js -d dist --presets es2015,stage-2 && cp -r ./static ./dist",
"buildf": "webpack --progress --colors --config webpack.config.js",
"buildfp": "NODE_ENV=production webpack --progress --colors --config webpack.config.js",
"server": "node dist/index.js",
"test": "mocha --require babel-register --require test/support/env.js"
},
"author": "course.unipus",
"license": "MIT",
"dependencies": {
"babel-polyfill": "6.23.0",
"express": "4.16.2",
"ioredis": "^3.2.2",
"less": "^2.7.3",
"prop-types": "^15.6.1",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-table": "^6.8.0",
"socket.io": "^2.0.4",
"socket.io-emitter": "^3.1.1",
"socket.io-redis": "^5.2.0",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "6.4.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "6.23.0",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "6.23.0",
"chai": "^4.1.2",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.26.4",
"eslint": "^4.11.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "0.11.1",
"html-webpack-plugin": "2.28.0",
"image-webpack-loader": "3.3.1",
"less-loader": "3.0.0",
"mocha": "^4.0.1",
"node-dev": "^3.1.3",
"nodemon": "^1.12.1",
"style-loader": "^0.20.3",
"webpack": "2.2.1",
"webpack-dev-server": "1.16.3",
"webpack-px-to-rem": "0.1.0",
"webpack-stats-plugin": "0.1.5",
"webpack-visualizer-plugin": "0.1.11"
}
}