-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "webpack-starter",
"version": "1.0.0",
"description": "Minimalist webpack front-end boilerplate built for developers",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack/webpack.config.dev.js",
"dev": "webpack-dev-server --open --config webpack/webpack.config.dev.js",
"build": "webpack --prod --config webpack/webpack.config.prod.js"
},
"keywords": [
"minimalist",
"mebpack",
"mront-end",
"webpack boilerplat",
"webpack starter",
"webpack babel",
"webpack postcss",
"startkit",
"developer workflow",
"development environment"
],
"author": "Ughur Naghiyev <ughurnn@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ughur/webpack-starter.git"
},
"bugs": {
"url": "https://github.com/ughur/webpack-starter/issues"
},
"homepage": "https://github.com/ughur/webpack-starter/issues",
"browserslist": [
"> 1%",
"ie >= 9"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"cssnano": "^4.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"caniuse-lite": "^1.0.30000997"
}
}