-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.71 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
{
"name": "react-redux-chat-room",
"version": "0.2.0",
"homepage": "https://github.com/anumang/react-redux-socket-io-chat#readme",
"license": "MIT",
"description": "Full stack react redux socket.IO chat app.",
"author": {
"name": "Alper Numan Genc",
"email": "anumangenc@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anumang/react-redux-socket-io-chat.git"
},
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.18.2",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.2",
"font-awesome": "^4.7.0",
"history": "^4.6.3",
"immutable": "^3.7.6",
"node-sass": "^4.3.0",
"path": "^0.12.7",
"react": "^16.0.0",
"react-alert": "^2.4.0",
"react-dom": "^16.0.0",
"react-linkify": "^0.2.1",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.6",
"react-scripts": "^4.0.1",
"react-spinkit": "^3.0.0",
"redis": "^2.8.0",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-loop-symbol-ponyfill": "^2.2.0",
"redux-promise": "^0.5.3",
"redux-socket.io": "^1.4.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.2",
"uid": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^8.0.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "^6.23.0",
"babel-runtime": "^6.22.0",
"css-loader": "0.26.1",
"enzyme": "^2.9.1",
"eslint": "^4.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.22.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.10.1",
"font-awesome-loader": "^1.0.2",
"html-webpack-plugin": "^2.26.0",
"jest": "^20.0.4",
"loglevel": "^1.4.1",
"postcss-loader": "^1.3.3",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.6.1",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "^3.3.0",
"webpack-cleanup-plugin": "^0.4.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.1"
},
"scripts": {
"start": "webpack-dev-server --progress --profile --colors",
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"start-server": "node ./backend/start.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}