-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 786 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"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",
"json:server": "json-server --watch api/db.json"
},
"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",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"json-server": "^0.16.1"
}
}