forked from bochap-opensource/es6-webpack4-babel7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.14 KB
/
package.json
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
27
28
29
30
31
32
33
34
35
{
"name": "es6-webpack4-babel7",
"version": "1.0.0",
"description": "This repository contains the accompanying code for the article published Webpack with Babel 7 at Medium.com (https://medium.com/p/b61f7caa9565/edit). The article details the tools used to bundled a web application written in ES6 using Webpack and Babel 7. The configuration used by Webpack will also be written using ES6.",
"main": "index.js",
"scripts": {
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seetd-knowledge/es6-webpack4-babel7.git"
},
"keywords": [
"babel",
"es6",
"javascript",
"webpack"
],
"author": "Darren Seet",
"license": "MIT",
"bugs": {
"url": "https://github.com/seetd-knowledge/es6-webpack4-babel7/issues"
},
"homepage": "https://github.com/seetd-knowledge/es6-webpack4-babel7#readme",
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/preset-env": "7.3.1",
"@babel/register": "7.0.0",
"babel-loader": "8.0.5",
"html-webpack-plugin": "3.2.0",
"script-ext-html-webpack-plugin": "2.1.3",
"webpack": "4.29.3",
"webpack-cli": "3.2.3"
}
}