forked from venkatesh2010/bmrcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.95 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
{
"name": "react-fondue",
"version": "1.0.0",
"main": "main.js",
"description": "Minimal React boilerplate with support for code splitting, hot module reload and server side rendering.",
"repository": "https://github.com/luangjokaj/react-fondue",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@hot-loader/react-dom": "^16.8.6",
"@intervolga/optimize-cssnano-plugin": "^1.0.6",
"accepts": "^1.3.7",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-universal-import": "^4.0.0",
"brotli-webpack-plugin": "^1.1.0",
"classnames": "^2.2.6",
"compression-webpack-plugin": "^3.0.0",
"cookie-parser": "^1.4.4",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.0.0",
"css-modules": "^0.3.0",
"cssnano": "^4.1.10",
"eslint": "^6.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"express": "^4.17.1",
"express-static-gzip": "^1.1.3",
"extract-css-chunks-webpack-plugin": "^4.5.6",
"extract-loader": "^3.1.0",
"file-loader": "^4.0.0",
"highlight.js": "^9.15.8",
"import": "0.0.6",
"markdown-with-front-matter-loader": "^0.1.0",
"mini-css-extract-plugin": "^0.8.0",
"nodemon": "^1.19.1",
"normalize.css": "^8.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-calc": "^7.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-for": "^2.1.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.2",
"postcss-preset-env": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-tag-manager": "^2.2.1",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.12.7",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-universal-component": "^4.0.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"url-loader": "2.0.1",
"webpack": "^4.36.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6",
"webpack-dev-middleware": "3.7.0",
"webpack-flush-chunks": "^2.0.3",
"webpack-hot-middleware": "2.25.0",
"webpack-hot-server-middleware": "^0.6.0",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"prod": "NODE_ENV=production node src/server/main.js",
"dev": "NODE_ENV=development nodemon --watch src/server --watch config --inspect src/server/main.js",
"lint:css": "stylelint src/**/*.css",
"lint:js": "eslint src src/**/*.js",
"lint:fix": "eslint src src/**/*.js --fix",
"lint": "npm run lint:css && npm run lint:js"
}
}