forked from cygnusss/babel_webpack_starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 717 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "babel_webpack_starter",
"version": "1.0.0",
"description": "Starter pack for compiling ES6+ apps to ES5",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --output-public-path=/build/ --mode development --progress --open --hot",
"build": "webpack --mode production --progress"
},
"author": "Brad Traversy",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.3",
"babel-loader": "^8.0.5",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-stage-0": "^7.0.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.10"
}
}