-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "starter",
"version": "1.0.0",
"description": "webpack starter",
"private": true,
"main": "webpack.config.js",
"dependencies": {
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"autoprefixer": "^9.5.0",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production webpack",
"start": "webpack-dev-server --history-api-fallback --hot"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"repository": {
"type": "git",
"url": "git+https://github.com/D0man/starter.git"
},
"keywords": [
"webpack",
"starter"
],
"author": "Kuba Domański",
"license": "MIT",
"bugs": {
"url": "https://github.com/D0man/starter/issues"
},
"homepage": "https://github.com/D0man/starter#readme"
}