Files
kontrakorronte/package.json
Milton 93ec2e7fb6 Migrated from parcel to webpack
The whole idea of parcel was that it was configless.
Now parcel 2 needs a config file. At that point, why not use webpack?
2021-10-31 20:27:50 -03:00

24 lines
589 B
JSON

{
"license": "",
"scripts": {
"start": "webpack serve --mode=development",
"build": "run-s clean build-only",
"build-only": "webpack --mode=production",
"clean": "rimraf dist"
},
"dependencies": {
"pixi.js": "^6.1.3"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"copy-webpack-plugin": "^9.0.1",
"html-webpack-plugin": "^5.5.0",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}