xxxxxxxxxx
"start:dev": "webpack-dev-server --open --config webpack/webpack.config.dev.js,
xxxxxxxxxx
{
"name": "testapp",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "echo This is the DEV script",
"abc": "echo This is the abc script",
"xyz": "echo This is the xyz script",
"start":"echo This is the special start script"
}
}
xxxxxxxxxx
{
"name": "your-project",
"version": "1.0.0",
"scripts": {
"start": "node index.js",
"build": "webpack",
"dev": "webpack --watch"
},
"dependencies": {
"package1": "1.0.0",
"package2": "2.0.0"
}
}