-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "webpack-boilerplate",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"build": "webpack -p --config ./webpack/webpack.config.js --display-error-details",
"watch": "webpack -d --watch --config ./webpack/webpack.config.js --display-error-details",
"dev": "webpack-dev-server --config ./webpack/webpack.config.js --inline --hot --display-error-details"
},
"repository": {
"type": "git",
"url": ""
},
"author": "DmitryVdovichencko",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"eslint": "^6.0.1",
"eslint-loader": "^2.2.1",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss": "^7.0.17",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^7.1.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"eslint-utils": "1.4.3"
}
}