forked from IgorKonovalov/HTML-JS_boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.42 KB
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
41
42
43
44
45
46
{
"name": "html-js_boilerplate",
"version": "1.0.0",
"description": "Boilerplate for developing simple apps with babel and hot reload",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.1.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open",
"lint": "eslint src -c .eslintrc --ext js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgorKonovalov/HTML-JS_boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IgorKonovalov/HTML-JS_boilerplate/issues"
},
"homepage": "https://github.com/IgorKonovalov/HTML-JS_boilerplate#readme"
}