mirror of
https://github.com/Raghu-Ch/ES6-Handson.git
synced 2026-02-10 04:33:02 -05:00
22 lines
506 B
JSON
22 lines
506 B
JSON
{
|
|
"name": "es6-tutorial",
|
|
"version": "1.0.0",
|
|
"description": "ES6 DEMO",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"babel": "babel --presets es2015 js/main.js -o build/main.bundle.js",
|
|
"start": "http-server -p 7000",
|
|
"webpack": "webpack"
|
|
},
|
|
"author": "RaghuJS",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.22.2",
|
|
"babel-core": "^6.22.1",
|
|
"babel-loader": "^6.2.10",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"http-server": "^0.9.0",
|
|
"webpack": "^2.2.1"
|
|
}
|
|
}
|