-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "webpack-template",
"version": "1.0.0",
"description": "webpack4 template for myself",
"main": "index.js",
"scripts": {
"test": "test",
"dev": "webpack-dev-server --config ./config/webpack.config.dev.js",
"build": "webpack --config ./config/webpack.config.prod.js"
},
"browserslist": [
"> 1%",
"last 3 version"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kamikozz/webpack-template.git"
},
"keywords": [
"webpack-template",
"webpack4"
],
"author": "Alexey Shevchenko <kamikozz@mail.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kamikozz/webpack-template/issues"
},
"homepage": "https://github.com/Kamikozz/webpack-template#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"regenerator-runtime": "^0.13.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {}
}