webpack-configs/package.json

33 lines
879 B
JSON
Raw Normal View History

2021-01-03 16:31:48 +00:00
{
"name": "webpack-static-html",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2021-01-03 18:28:42 +00:00
"start": "webpack serve",
"build": "webpack --env production"
2021-01-03 16:31:48 +00:00
},
"author": "",
"license": "ISC",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
2021-01-03 18:28:42 +00:00
"cssnano-webpack-plugin": "^1.0.3",
2021-01-03 16:31:48 +00:00
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.3.3",
"postcss": "^8.2.2",
"postcss-functions": "^4.0.2",
"postcss-import": "^14.0.0",
"postcss-loader": "^4.1.0",
"postcss-mixins": "^7.0.2",
"postcss-nesting": "^7.0.1",
"postcss-preset-env": "^6.7.0",
"postcss-simple-vars": "^6.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.11.1",
2021-01-03 16:58:32 +00:00
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
2021-01-03 16:31:48 +00:00
}
}