-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "react-redux-sockets-chat",
"version": "1.0.0",
"description": "Basic chat app built with react/redux/websockets",
"main": "index.js",
"author": "samblacklock <samblacklock@me.com>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"express": "^4.16.3",
"lodash": "^4.17.10",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"slash-command": "^0.0.52",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"styled-jsx": "^2.2.7",
"styled-jsx-plugin-stylus": "^0.0.4",
"stylus": "^0.54.5"
},
"scripts": {
"watch:files": "webpack --mode development --watch",
"watch:server": "nodemon server.js",
"start": "webpack --mode production && node server.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"html-webpack-plugin": "^3.2.0",
"path": "^0.12.7",
"redux-devtools-extension": "^2.13.5",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8"
}
}