-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
121 lines (121 loc) · 3.54 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
117
118
119
120
121
{
"name": "React_Help_Desk",
"version": "1.0.0",
"description": "Help desk component for React with admin control panel. Uses Socket.io, React and Node/Express",
"main": "server/app.js",
"engines": {
"node": "^8.17.0"
},
"scripts": {
"start": "node server/app.js",
"nodemon": "nodemon --watch server server/app.js",
"build": "NODE_ENV=production|| set NODE_ENV=production&& webpack --config ./webpack.config.js --progress",
"prod": "npm run build && NODE_ENV=production|| set NODE_ENV=production&& node server/app.js",
"prod-no-build": "NODE_ENV=production|| set NODE_ENV=production&& node server/app.js"
},
"author": "Jason Gallagher",
"license": "MIT",
"keywords": [
"help desk",
"live chat",
"live agent",
"chat",
"react",
"redux",
"node.js",
"express",
"socket.io",
"realtime",
"websockets",
"mysql",
"postgres",
"mssql"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unleashit/react_help_desk.git"
},
"dependencies": {
"autoprefixer": "6.5.3",
"babel-polyfill": "6.16.0",
"babel-register": "6.18.0",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "2.3.0",
"body-parser": "1.15.2",
"bootstrap": "4.0.0-alpha.5",
"compression": "1.6.2",
"connect-flash": "0.1.1",
"connect-pg-simple": "3.1.2",
"cookie-parser": "1.4.3",
"crypto": "0.0.3",
"ejs": "2.5.2",
"express": "4.14.0",
"express-mysql-session": "1.2.0",
"express-session": "1.14.2",
"lodash": "4.17.1",
"moment": "2.16.0",
"mysql": "2.12.0",
"nodemailer": "2.6.4",
"passport": "0.3.2",
"passport-local": "1.0.0",
"passport.socketio": "3.7.0",
"pg": "6.1.0",
"pg-hstore": "2.3.2",
"react": "15.3.2",
"react-custom-scrollbars": "4.0.0",
"react-dom": "15.3.2",
"react-helmet": "3.2.2",
"react-redux": "4.4.6",
"redux": "3.6.0",
"redux-thunk": "2.1.0",
"sequelize": "3.25.0",
"sequelize-cli": "2.4.0",
"socket.io": "1.5.1",
"socket.io-client": "1.5.1"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.0",
"babel-loader": "6.2.7",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-es2015-destructuring": "6.18.0",
"babel-plugin-transform-object-assign": "6.8.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"browser-sync": "2.17.6",
"browser-sync-webpack-plugin": "1.1.3",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.25.0",
"cssnano": "3.8.0",
"debug": "2.3.2",
"del": "2.2.2",
"eslint": "3.10.2",
"eslint-config-airbnb": "13.0.0",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.7.1",
"express-debug": "1.1.1",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"html-webpack-plugin": "2.24.1",
"ignore-styles": "5.0.1",
"image-webpack-loader": "3.0.0",
"loader-utils": "0.2.16",
"node-sass": "3.13.0",
"nodemon": "1.11.0",
"optimize-css-assets-webpack-plugin": "1.3.0",
"postcss-loader": "1.1.1",
"purifycss-webpack-plugin": "2.0.3",
"react-hot-loader": "3.0.0-beta.6",
"react-transform-hmr": "1.0.4",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"webpack": "2.1.0-beta.27",
"webpack-dev-middleware": "1.8.4",
"webpack-dev-server": "1.16.2",
"webpack-hot-middleware": "2.13.2"
}
}