-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
36
37
38
39
40
{
"name": "es6-boilerplate",
"version": "2.0.0",
"description": "Standard ES6 Boilerplate configured with babel, webpack and eslint.",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel dev:server lint:watch",
"dev:server": "webpack-dev-server --hot --inline",
"watch": "webpack -w -d",
"build": "webpack -p",
"lint": "node_modules/.bin/esw webpack.config.* src --color",
"lint:watch": "npm run lint -- --watch"
},
"keywords": [
"es6"
],
"author": "metagrover",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^5.10.0",
"eslint-watch": "^4.0.2",
"node-sass": "^4.13.1",
"npm-run-all": "^4.0.2",
"sass-loader": "^8.0.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"css-loader": "^3.4.2",
"events": "^3.1.0",
"html-loader": "^0.5.5",
"style-loader": "^1.1.3"
}
}