-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.73 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
{
"name": "hackdo-website",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"yarn": "1.7.0",
"node": "9.3.0"
},
"scripts": {
"webpack": "./node_modules/.bin/webpack",
"nodemon": "./node_modules/.bin/nodemon",
"start": "NODE_ENV=production node ./app.js",
"debug": "NODE_ENV=development node --inspect ./app.js",
"dev": "yarn webpack --config webpack.dev.js",
"dev:watch": "yarn webpack --watch --config webpack.dev.js",
"postinstall": "yarn run prod",
"prod": "yarn webpack --config webpack.prod.js",
"clean-cache": "yarn cache clean"
},
"author": "maxtermax",
"license": "MIT",
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "6.25.0",
"babel-loader": "7.0.0",
"babel-plugin-module-resolver": "^3.1.0",
"babel-plugin-react-css-modules": "^3.3.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.5.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "6.23.0",
"babili-webpack-plugin": "0.1.1",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"compression-webpack-plugin": "^1.1.7",
"css-loader": "0.28.3",
"ejs": "^2.5.7",
"exports-loader": "0.6.4",
"expose-loader": "0.7.3",
"express": "^4.16.2",
"express-mongo-sanitize": "^1.3.2",
"express-sanitized": "^0.5.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^1.1.6",
"hard-source-webpack-plugin": "^0.4.11",
"history": "^4.7.2",
"json-update": "^3.0.0",
"lodash": "^4.17.4",
"mongoose": "^5.1.1",
"morgan": "^1.9.0",
"motion-ui": "1.2.2",
"node-sass": "^4.7.2",
"nodemon": "^1.14.11",
"optimize-css-assets-webpack-plugin": "3.2.0",
"react": "^16.1.1",
"react-alice-carousel": "^1.9.2",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"sass-loader": "6.0.5",
"scroll-to-element": "^2.0.2",
"style-loader": "0.18.1",
"url-loader": "^0.6.2",
"web-push": "^3.3.1",
"webpack": "^3.8.1",
"webpack-livereload-plugin": "^1.0.0",
"webpack-merge": "^4.1.1",
"webpack-notifier": "^1.5.0",
"webpack-sources": "1.0.1"
},
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.0.0",
"babel-plugin-react-css-modules": "^3.3.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.5.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "6.23.0",
"babili-webpack-plugin": "0.1.1",
"css-loader": "0.28.3",
"exports-loader": "0.6.4",
"expose-loader": "0.7.3",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^1.1.6",
"hard-source-webpack-plugin": "^0.4.11",
"motion-ui": "1.2.2",
"node-sass": "^4.7.2",
"nodemon": "^1.14.11",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"sass-loader": "6.0.5",
"style-loader": "0.18.1",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-livereload-plugin": "^1.0.0",
"webpack-merge": "^4.1.1",
"webpack-notifier": "^1.5.0"
}
}