forked from DCtheTall/node-video-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "node-video-chat",
"version": "1.0.0",
"description": "A video chat using NodeJS, GraphQL, React, and Socket.io",
"main": "build/start.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/start",
"heroku-postbuild": "NODE_ENV=production webpack; sequelize db:migrate;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DCtheTall/node-video-chat.git"
},
"author": "Dylan Cutler",
"license": "ISC",
"bugs": {
"url": "https://github.com/DCtheTall/node-video-chat/issues"
},
"engines": {
"node": "8.9.0"
},
"homepage": "https://github.com/DCtheTall/node-video-chat#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.1.9",
"apollo-client": "^2.2.5",
"apollo-client-preset": "^1.0.8",
"apollo-link-http": "^1.4.0",
"apollo-link-schema": "^1.0.6",
"apollo-link-ws": "^1.0.7",
"apollo-utilities": "^1.0.10",
"autoprefixer": "^8.1.0",
"aws-sdk": "^2.249.1",
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-node8": "^1.2.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"classnames": "^2.2.5",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"cookies": "^0.7.1",
"cors": "^2.8.4",
"css-loader": "^0.28.10",
"debug": "^3.1.0",
"dotenv": "^5.0.0",
"enum": "^2.5.0",
"express": "^4.16.2",
"express-graphql": "^0.6.12",
"express-jwt": "^5.3.0",
"extract-text-webpack-plugin": "^3.0.2",
"graphql": "^0.13.1",
"graphql-redis-subscriptions": "^1.4.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tag": "^2.8.0",
"image-size": "^0.6.2",
"jsonwebtoken": "^8.1.1",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"moment": "^2.21.0",
"morgan": "^1.9.0",
"node-fetch": "^2.0.0",
"node-pre-gyp": "^0.8.0",
"node-sass": "^4.7.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"pg": "^7.4.1",
"pizzicato": "^0.6.3",
"postcss-loader": "^2.1.1",
"prop-types": "^15.6.0",
"pug": "^2.0.0-rc.4",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-stay-scrolled": "^2.1.1",
"react-textarea-autosize": "^6.0.3",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.7",
"sequelize": "^4.33.4",
"sequelize-cli": "^4.0.0",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"socket.io-redis": "^5.2.0",
"socketio-jwt": "^4.5.0",
"style-loader": "^0.20.2",
"subscriptions-transport-ws": "^0.9.6",
"twilio": "^3.17.1",
"validator": "^9.4.1",
"webpack": "~3.11.0",
"webpack-manifest-plugin": "^2.0.3",
"webpack-node-externals": "^1.6.0",
"webrtc-adapter": "^6.1.5"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0"
}
}