-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.42 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
{
"name": "webpack4",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --inspect --watch config --watch src/server src/server/main.js",
"prod": "NODE_ENV=production node src/server/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-minify": "^0.4.3",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-emotion": "^9.2.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-universal-import": "^3.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"brotli-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^1.1.11",
"cross-fetch": "^2.2.2",
"css-loader": "^1.0.0",
"dotenv": "^6.0.0",
"emotion": "^9.2.6",
"express": "^4.16.3",
"express-static-gzip": "^1.1.1",
"extract-css-chunks-webpack-plugin": "^3.0.11",
"extract-loader": "^2.0.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"markdown-with-front-matter-loader": "^0.1.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.1",
"react-emotion": "^9.2.6",
"react-hot-loader": "^4.3.4",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-universal-component": "2.9.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"vue": "^2.5.17",
"vue-loader": "^15.2.6",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.5.17",
"webpack": "4.14.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.5",
"webpack-flush-chunks": "^2.0.1",
"webpack-hot-middleware": "^2.22.3",
"webpack-hot-server-middleware": "^0.5.0",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"nodemon": "^1.18.3"
}
}