-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.89 KB
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
{
"name": "react-node-chat",
"version": "1.0.0",
"description": "Chat app with react front end and node/socket.io backend",
"main": "index.js",
"scripts": {
"start": "npm run build && node index.js",
"test": "LOG_LEVEL=error ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha",
"clean": "rimraf client/dist",
"dev": "NODE_ENV=development npm run build && ./node_modules/.bin/webpack-dev-server",
"build": "npm run clean && ./node_modules/.bin/webpack",
"server": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ltamrazov/react-node-chat.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ltamrazov/react-node-chat/issues"
},
"homepage": "https://github.com/ltamrazov/react-node-chat#readme",
"devDependencies": {
"browser-sync": "^2.14.0",
"browser-sync-webpack-plugin": "^1.1.3",
"chai": "3.5.0",
"eslint": "^3.16.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.1",
"istanbul": "0.4.5",
"jsdom": "^9.12.0",
"mocha": "3.2.0",
"react-addons-test-utils": "^15.4.0",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"axios": "0.15.3",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"body-parser": "1.17.1",
"bootstrap": "^4.0.0-alpha.6",
"bootstrap-material-design": "^0.5.10",
"config": "1.25.1",
"copy-webpack-plugin": "^4.0.1",
"cors": "^2.8.1",
"css-loader": "^0.27.3",
"es6-promise": "^4.0.5",
"express": "4.15.2",
"express-jwt": "5.1.0",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"helmet": "3.5.0",
"history": "^4.6.0",
"html-webpack-plugin": "^2.26.0",
"jquery": "^2.2.4",
"jsonwebtoken": "7.3.0",
"material-design-icons": "^3.0.1",
"node-sass": "^4.2.0",
"prop-types": "^15.5.10",
"react": "^15.4.0",
"react-addons-css-transition-group": "^15.4.1",
"react-addons-transition-group": "^15.4.1",
"react-dom": "^15.4.0",
"react-redux": "^5.0.3",
"react-router": "^4.0.0",
"react-router-dom": "^4.1.1",
"react-spinner": "^0.2.6",
"redux": "^3.5.2",
"redux-form": "^6.5.0",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.2",
"script-loader": "^0.7.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"socketio-jwt": "4.5.0",
"style-loader": "^0.13.2",
"tether": "^1.4.0",
"url-loader": "^0.5.8",
"uuid": "3.0.1",
"webpack": "^2.2.1",
"webpack-merge": "^4.0.0",
"winston": "2.3.1"
}
}