-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 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
{
"name": "matrix-poc",
"version": "1.0.0",
"description": "Small proof of concept for webRTC communications using synapsis",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": ". ./.env && ./node_modules/.bin/nodemon --watch ./server/ --exec ./node_modules/.bin/babel-node server/index.js"
},
"author": "Fernando Vásquez",
"license": "MIT",
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"base64-arraybuffer": "^0.1.5",
"chalk": "^2.3.0",
"cli-color": "^1.2.0",
"express": "^4.16.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"uuid": "^3.2.1",
"ws": "^4.0.0"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"nodemon": "^1.14.12",
"react-hot-loader": "^3.1.3",
"redux-logger": "^3.0.6",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4",
"webpack-dev-server": "^2.11.1",
"webpack-hot-middleware": "^2.21.0"
}
}