diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/package.json b/package.json index 6427530..f3f6c50 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,19 @@ "description": "scratchblocks generator for projects made in 3.0", "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "build-dev": "webpack --mode development", + "build-prod": "webpack --mode production", + "watch": "webpack -w --mode development" }, "author": "Florrie <towerofnix@gmail.com>", - "license": "GPL-3.0" + "license": "GPL-3.0", + "devDependencies": { + "css-loader": "^3.4.0", + "html-webpack-plugin": "^3.2.0", + "mini-css-extract-plugin": "^0.9.0", + "raw-loader": "^4.0.0", + "webpack": "^4.41.4", + "webpack-cli": "^3.3.10" + } } |