-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.92 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
60
61
62
63
64
65
{
"name": "webpack-boilerplate",
"version": "1.0.1",
"description": "WebPack: HTML, CSS, SCSS, JS, Img, Fonts",
"main": "",
"browserslist": [
"> 0.25%, not dead"
],
"scripts": {
"dev": "webpack-dev-server --history-api-fallback --inline --open",
"build": "npm run clear -s && webpack --progress",
"lint": "eslint --ext .js,.ts src",
"clear": "del-cli dist",
"dev-web": "webpack-dev-server --config webpack/webpack.dev.config.js --progress"
},
"author": "Netizen",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Net-zen/webpack-boilerplate.git"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"del-cli": "^3.0.1",
"dotenv-webpack": "^7.0.2",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^6.5.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.23.3",
"file-loader": "^4.2.0",
"gulp-uglify-es": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "^8.2.0",
"typescript": "^4.2.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"core-js": "^3.4.7",
"loader-utils": "^2.0.0",
"regenerator-runtime": "^0.13.3",
"uuid": "^8.3.2"
}
}