-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.23 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
{
"name": "vuzuk",
"version": "1.0.0",
"private": false,
"scripts": {
"start:dev": "rm -rf ./dist/* && npm run build:dev && NODE_ENV=DEVELOPMENT node ./bin/www",
"start": "npm run build:prod && NODE_ENV=PRODUCTION pm2 start ./bin/www",
"start:hard": "DB_RECREATE=true node ./bin/www",
"build:prod": "webpack --config ./webpack.config.prod.js",
"build:dev": "webpack --config ./webpack.config.dev-ssr.js"
},
"dependencies": {
"axios": "^0.17.1",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"busboy": "~0.2.13",
"chart.js": "^2.7.2",
"classnames": "^2.2.5",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"crypto-js": "^3.1.6",
"debug": "~2.6.9",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"express-mysql-session": "^1.2.3",
"express-session": "^1.15.6",
"gm": "^1.23.0",
"html-word-count": "^2.0.0",
"merge": "~2.1.1",
"minify-images": "^1.0.6",
"morgan": "~1.9.0",
"multer": "^1.3.0",
"mysql2": "^1.5.1",
"nodemailer": "^4.4.2",
"nodemailer-ses-transport": "^1.5.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"randomstring": "^1.1.5",
"react": "^16.2.0",
"react-chartjs-2": "^2.7.0",
"react-dom": "^16.2.0",
"react-froala-wysiwyg": "^2.7.3",
"react-responsive-hoc": "^1.0.0",
"react-router-dom": "^4.2.2",
"react-slick": "^0.17.1",
"semantic-ui-react": "^0.77.2",
"sequelize": "^4.31.2",
"sequelize-slugify": "^0.5.0",
"serialize-javascript": "^1.5.0",
"serve-favicon": "~2.4.5",
"sha1": "~1.1.1",
"twilio": "^3.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"nodemon": "^1.17.5",
"sequelize-cli": "^3.2.0",
"style-loader": "^0.20.1",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-middleware": "^2.0.4",
"webpack-hot-middleware": "^2.21.0",
"webpack-node-externals": "^1.6.0"
}
}