diff --git a/package.json b/package.json index 6f92b48..84ddebb 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,14 @@ "private": true, "author": "", "scripts": { + "build": "webpack", + "watch": "webpack watch", }, "license": "MIT", "devDependencies": { + "webpack": "^5.63.0", + "webpack-cli": "^4.9.1", + "webpack-dev-server": "^4.4.0" }, "dependencies": { } diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..abcd19e --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,5 @@ + +module.exports = { + module: { + }, +};