-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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
{
"name": "webpack-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for modern javascript development using webpack 4",
"author": "meishier",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --color --config=config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config=config/webpack.prod.js",
"lint": "eslint --no-ignore .*.js & eslint *.js src config",
"lint:fix": "eslint --no-ignore .*.js --fix & eslint --ext .jsx,.js *.js src config --fix"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"brotli-webpack-plugin": "^1.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"dotenv": "^8.1.0",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^2.0.0",
"prettier": "^1.18.2",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"terser-webpack-plugin": "^1.4.1",
"thread-loader": "^2.1.3",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"core-js": "3"
},
"browserslist": [
"> 1%",
"not ie <= 9",
"last 3 versions"
]
}