-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "webpack-boilerplate",
"version": "2.0.0",
"description": "Sensible webpack 5 boilerplate using Babel and PostCSS with a hot dev server and an optimized production build.",
"main": "index.js",
"author": "Tania Rascia",
"license": "MIT",
"scripts": {
"dev:webpack": "webpack-dev-server",
"dev:hugo": "hugo --watch",
"build:webpack": "webpack --mode=production",
"build:hugo": "hugo --environment production"
},
"devDependencies": {
"@babel/core": "^7.8.1",
"@babel/preset-env": "^7.8.7",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss": "^8.4.31",
"postcss-custom-media": "*",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.0.3",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "*",
"stylelint": "^15.10.1",
"stylelint-order": "*",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"vanilla-lazyload": "^12.0.0"
}
}