-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 840 Bytes
/
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
{
"name": "es6-skeleton",
"version": "1.0.0",
"description": "A skeleton for ES6 front end applications with webpack, babel and ESlint",
"main": "index.js",
"scripts": {
"build": "webpack --config prod.webpack.config.js -p --fix",
"postbuild": "cp index.html ./dist/index.html",
"start": "webpack-dev-server",
"test": "webpack"
},
"keywords": [
"ES6",
"webpack",
"babel",
"javascript",
"frontend"
],
"author": "Nicolás Pascual González",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-loader": "^1.9.0",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}