-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1012 Bytes
/
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
{
"scripts": {
"watch": "webpack --config webpack.dev.js --hide-modules --watch",
"dev": "webpack --config webpack.dev.js --hide-modules",
"prod": "webpack --config webpack.prod.js --hide-modules"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.8.0",
"postcss-loader": "^3.0.0",
"sass": "^1.26.3",
"sass-loader": "^7.3.1",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-fix-style-only-entries": "^0.3.0",
"webpack-import-glob-loader": "^1.6.3",
"webpack-merge": "^4.2.1"
}
}