Added webpack

This commit is contained in:
MaxRobinsonTheGreat
2020-06-30 13:51:32 -06:00
parent 847ff76f84
commit 8d208ca9cc
5 changed files with 1719 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "EvolutionSimulatorV2",
"version": "1.0.0",
"description": "Version 2 of the evolution simulator",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development",
"build-watch": "webpack --watch --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxRobinsonTheGreat/EvolutionSimulatorV2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MaxRobinsonTheGreat/EvolutionSimulatorV2/issues"
},
"homepage": "https://github.com/MaxRobinsonTheGreat/EvolutionSimulatorV2#readme",
"devDependencies": {
"webpack-cli": "^3.3.12"
}
}